/* =============================================
   FISCHTEICH LECH – Main Stylesheet
   ============================================= */

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

:root {
  --green-dark:   #0d2b1a;
  --green-mid:    #1a4a2e;
  --green-light:  #2d7a4f;
  --green-accent: #4caf7d;
  --gold:         #c9a84c;
  --gold-light:   #e8c97a;
  --gold-deep:    #8a6a1f;
  --cream:        #f5f0e8;
  --white:        #ffffff;
  --text-dark:    #0d1a14;
  --text-mid:     #3a4a40;
  --text-light:   #8a9e94;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;
  --font-display: 'Bebas Neue', 'Inter', sans-serif;
  --radius:       12px;
  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--green-dark);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  top: -40px;
  left: 1rem;
  background: var(--gold);
  color: var(--green-dark);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  z-index: 10001;
  font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

/* Visible focus states */
a:focus-visible,
button:focus-visible,
.gallery-item:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Light sections need a darker gold for AA contrast */
.section--light .section__eyebrow { color: var(--gold-deep); }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 2rem;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(13, 43, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(76, 175, 125, 0.15);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition);
}

.nav.scrolled .nav__logo { opacity: 1; }

.nav__logo-icon {
  width: 36px;
  height: auto;
  color: var(--gold);
  flex-shrink: 0;
}

.footer__brand .nav__logo-icon { color: var(--gold); }

.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { width: 100%; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero__video,
.hero__media {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13, 43, 26, 0.75) 0%,
    rgba(13, 43, 26, 0.4) 50%,
    rgba(13, 43, 26, 0.8) 100%
);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  max-width: 900px;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 1.5rem;
  /* Gradient-Text (background-clip:text + -webkit-text-fill-color:transparent)
     hier entfernt — er war die Ursache des weissen Flecks in Windows-Chrome.
     Siehe Fix-Block am Dateiende (2026-07-28). */
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
}

.btn--primary {
  background: var(--gold);
  color: var(--green-dark);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
}

.btn--outline {
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }

/* =============================================
   SECTIONS BASE
   ============================================= */
.section { padding: 8rem 0; }

.section--dark  { background: var(--green-dark); color: var(--white); }
.section--light { background: var(--cream); color: var(--text-dark); }
.section--green { background: var(--green-mid); color: var(--white); }
.section--video { position: relative; padding: 12rem 0; color: var(--white); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section__body {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 1rem;
  max-width: 560px;
}

.text-center { text-align: center; }
.text-center .section__body { margin-left: auto; margin-right: auto; }

/* =============================================
   ABOUT
   ============================================= */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__awards {
  margin-top: 2rem;
}

.award {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.award__icon { font-size: 2rem; }

.award strong {
  display: block;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.award span {
  font-size: 0.875rem;
  opacity: 0.75;
}

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}

.stat:hover {
  background: rgba(76, 175, 125, 0.1);
  transform: translateY(-4px);
}

.stat__number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__number small { font-size: 1.5rem; }

.stat__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
}

/* =============================================
   SERVICES
   ============================================= */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.service-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--green-dark);
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-mid);
}

/* =============================================
   MENU / SPEISEN
   ============================================= */
.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.menu-category {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem;
}

.menu-category h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 1rem;
}

.menu-item span:last-child {
  color: var(--gold-light);
  white-space: nowrap;
  font-weight: 500;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.75rem;
  margin-top: 4rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item img {
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,43,26,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__overlay span {
  font-size: 2.5rem;
  color: var(--white);
  font-weight: 300;
  line-height: 1;
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.lightbox__img-wrap {
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox__img-wrap img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  border-radius: 50%;
  width: 48px; height: 48px;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__close { top: 1.5rem; right: 1.5rem; font-size: 1rem; }
.lightbox__prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,0.2); }

/* =============================================
   VIDEO SECTION
   ============================================= */
.video-section__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.video-section__bg video {
  width: 100%; height: 100%;
  object-fit: cover;
}

.video-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,43,26,0.5), rgba(13,43,26,0.7));
}

.video-section__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

/* =============================================
   CONTACT
   ============================================= */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.contact__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact__icon { font-size: 1.5rem; flex-shrink: 0; }

.contact__item strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.contact__item p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}

.contact__item a:hover { color: var(--gold); }

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.contact__map iframe { display: block; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #060f0a;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

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

.footer__links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--gold); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .menu__grid     { grid-template-columns: 1fr; }
  .gallery__grid  { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .nav__links { display: none; flex-direction: column; position: fixed; inset: 0; top: 0; background: rgba(13,43,26,0.97); backdrop-filter: blur(20px); align-items: center; justify-content: center; gap: 2.5rem; }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1.5rem; }
  .nav__hamburger { display: flex; z-index: 1001; }

  .about__grid    { grid-template-columns: 1fr; gap: 3rem; }
  .about__stats   { grid-template-columns: 1fr 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .contact__grid  { grid-template-columns: 1fr; gap: 3rem; }
  .gallery__grid  { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 2; }
  .footer__inner  { flex-direction: column; text-align: center; }

  .hero__title { font-size: clamp(3rem, 15vw, 5rem); }
}

@media (max-width: 480px) {
  .section { padding: 5rem 0; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .about__stats { grid-template-columns: 1fr; }
}


/* =============================================
   EDITORIAL OVERHAUL – Außergewöhnliches Design
   ============================================= */

/* Grain / Noise overlay über alles */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.section { position: relative; }

/* === HERO – mehr Drama === */
.hero {
  height: 100vh;
  min-height: 720px;
}

/* Kurze Viewports (Laptop-Querformat klein, geteiltes Fenster):
   min-height-Zwang aufheben, damit Hero-Inhalt nicht in den Marquee ragt. */
@media (max-height: 900px) {
  .hero {
    min-height: 0 !important;
    height: auto !important;
    padding-top: 6rem !important;
    padding-bottom: 5rem !important;
  }
}

.hero__title {
  font-size: clamp(4rem, 14vw, 11rem) !important;
  letter-spacing: -0.04em;
  line-height: 0.85 !important;
  font-style: italic;
  font-weight: 900;
}

.hero__title em {
  font-style: normal;
}

.hero__eyebrow {
  font-family: var(--font-display);
  font-size: 0.95rem !important;
  letter-spacing: 0.4em !important;
}

.hero__subtitle {
  font-style: italic;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem) !important;
  font-weight: 400;
}

/* Vertikales Side-Label im Hero */
.hero__side-label {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.5em;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  z-index: 3;
}

/* Koordinaten oben rechts im Hero */
.hero__corner-meta {
  position: absolute;
  top: 8rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.55);
  text-align: right;
  z-index: 3;
  border-right: 1px solid rgba(201, 168, 76, 0.4);
  padding-right: 1rem;
}

/* === MARQUEE TICKER === */
.marquee {
  background: var(--gold);
  color: var(--green-dark);
  padding: 1.25rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  position: relative;
  z-index: 5;
}

.marquee__track {
  display: inline-flex;
  gap: 3rem;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: marqueeScroll 38s linear infinite;
}

.marquee__track > span { display: inline-block; }
.marquee__dot { color: var(--green-dark); opacity: 0.5; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === SECTION NUMBERS === */
.section__number {
  position: absolute;
  top: 3rem;
  right: 3rem;
  font-family: var(--font-display);
  font-size: clamp(6rem, 14vw, 14rem);
  font-weight: 400;
  line-height: 0.8;
  color: rgba(201, 168, 76, 0.08);
  z-index: 1;
  pointer-events: none;
  letter-spacing: -0.04em;
}

.section__number--dark {
  color: rgba(13, 43, 26, 0.06);
}

/* === DISPLAY TITLES with italic accent === */
.section__title--display {
  font-size: clamp(2.5rem, 7vw, 5.5rem) !important;
  letter-spacing: -0.03em;
  line-height: 0.95 !important;
}

.section__title--display em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.section--light .section__title--display em {
  color: var(--gold-deep);
}

/* === SECTION EYEBROW upgrade === */
.section__eyebrow {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.4em;
  position: relative;
  display: inline-block;
}

.section__eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 0.75rem;
  opacity: 0.6;
}

.text-center .section__eyebrow::before { display: none; }

/* === ABOUT mit Gold Stamp === */
.about__grid {
  position: relative;
  align-items: start;
}

.gold-stamp {
  position: absolute;
  /* INNERHALB der Bildecke (nicht ueberhaengend) - sonst schneidet
     html/body overflow-x:hidden die Auszeichnung ab, sobald das Fenster
     schmaler wird (war nur im Vollbild sichtbar). */
  top: 1.25rem;
  right: 1.25rem;
  width: 170px;
  height: 170px;
  color: var(--gold-light);
  animation: stampSpin 22s linear infinite;
  z-index: 4;
  filter: drop-shadow(0 6px 22px rgba(0,0,0,0.45));
}

.gold-stamp svg { width: 100%; height: 100%; }

.gold-stamp__core {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  animation: stampSpin 22s linear infinite reverse;
}

.gold-stamp__year {
  font-size: 0.85rem;
  color: rgba(232,201,122,0.9);
}

.gold-stamp__label {
  font-size: 2.5rem;
  color: var(--gold-light);
  margin-top: 0.25rem;
}

@keyframes stampSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* === STATS – größer, dramatischer === */
.stat__number {
  font-size: 4.5rem !important;
  font-family: var(--font-display) !important;
  letter-spacing: -0.02em;
  font-weight: 400 !important;
}

.stat {
  border-radius: 0 !important;
  border-left: 3px solid var(--gold) !important;
  background: transparent !important;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
  padding-left: 1.5rem !important;
  text-align: left !important;
}

/* === SERVICES – asymmetrisches Layout === */
.services__grid {
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 1rem !important;
}

.service-card {
  grid-column: span 2;
  border-radius: 0 !important;
  position: relative;
  border: 1px solid rgba(13,26,20,0.08);
  background: transparent !important;
  padding: 2.5rem !important;
}

.service-card:nth-child(1) { grid-column: span 3; background: var(--cream) !important; border: none; }
.service-card:nth-child(2) { grid-column: span 3; }
.service-card:nth-child(3) { grid-column: span 2; }
.service-card:nth-child(4) { grid-column: span 2; background: var(--green-dark) !important; color: var(--white); }
.service-card:nth-child(5) { grid-column: span 2; }
.service-card:nth-child(6) { grid-column: span 6; background: var(--gold) !important; color: var(--green-dark); border: none; }

.service-card:nth-child(4) h3,
.service-card:nth-child(6) h3 { color: inherit !important; }

.service-card:nth-child(4) p,
.service-card:nth-child(6) p { color: inherit !important; opacity: 0.8; }

.service-card__icon {
  font-size: 1.8rem !important;
  margin-bottom: 2rem !important;
  opacity: 0.85;
}

.service-card h3 {
  font-family: var(--font-serif) !important;
  font-size: 1.6rem !important;
  font-style: italic;
}

.service-card::before {
  content: counter(card-counter, decimal-leading-zero);
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  opacity: 0.5;
}

.services__grid { counter-reset: card-counter; }
.service-card { counter-increment: card-counter; }

/* === PULL QUOTE === */
.pullquote {
  background: var(--cream);
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pullquote .container {
  position: relative;
  z-index: 2;
}

.pullquote__mark {
  font-family: var(--font-serif);
  font-size: clamp(12rem, 22vw, 22rem);
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.18;
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-style: italic;
  z-index: 1;
}

.pullquote__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-dark);
  max-width: 900px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 2;
}

.pullquote__text em {
  font-style: normal;
  background: linear-gradient(transparent 65%, rgba(201,168,76,0.4) 65%);
  padding: 0 0.2em;
}

.pullquote__cite {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.4em;
  color: var(--gold-deep);
  font-style: normal;
}

/* === SPEISEN / MENU – editorial === */
.menu-category {
  border-radius: 0 !important;
  background: transparent !important;
  border: none !important;
  border-top: 2px solid var(--gold) !important;
  padding: 2rem 0 !important;
}

.menu-category h3 {
  font-family: var(--font-serif) !important;
  font-style: italic;
  font-size: 1.75rem !important;
  color: var(--white) !important;
  border-bottom: none !important;
  padding-bottom: 0.5rem !important;
}

.menu-item {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
}

.menu-item span:last-child {
  font-family: var(--font-display);
  font-style: normal;
  letter-spacing: 0.1em;
}

/* === GALLERY – asymmetrisch, magazin-style === */
.gallery__grid {
  grid-template-columns: repeat(6, 1fr) !important;
  grid-auto-rows: 180px !important;
  gap: 1rem !important;
}

.gallery-item { border-radius: 0 !important; }

.gallery-item:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 2; }
.gallery-item:nth-child(3) { grid-column: span 1; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-item:nth-child(6) { grid-column: span 3; }
.gallery-item:nth-child(7) { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(8) { grid-column: span 2; }
.gallery-item:nth-child(9) { grid-column: span 1; }

.gallery-item--wide { grid-column: unset !important; }

.gallery-item img {
  filter: saturate(1.05) contrast(1.05);
}

/* === CONTACT – editorial polish === */
.contact__map {
  border-radius: 0 !important;
  border: 1px solid rgba(13,26,20,0.1);
}

/* === BUTTONS === */
.btn {
  border-radius: 0 !important;
  font-family: var(--font-display);
  font-size: 1rem !important;
  letter-spacing: 0.2em !important;
  padding: 1rem 2.5rem !important;
}

/* === RESPONSIVE FIXES für Editorial Layout === */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(4, 1fr) !important; }
  .service-card { grid-column: span 2 !important; }
  .service-card:nth-child(6) { grid-column: span 4 !important; }
  .gallery__grid { grid-template-columns: repeat(4, 1fr) !important; }
  .gallery-item { grid-column: span 2 !important; grid-row: span 1 !important; }
  .gallery-item:nth-child(odd) { grid-column: span 2 !important; }
}

@media (max-width: 768px) {
  .gold-stamp { width: 120px; height: 120px; top: 1rem; right: 1rem; }
  .gold-stamp__label { font-size: 1.6rem; }
  .hero__side-label, .hero__corner-meta { display: none; }
  .section__number { font-size: 7rem; top: 1rem; right: 1rem; }
  .services__grid { grid-template-columns: 1fr !important; }
  .service-card,
  .service-card:nth-child(6) { grid-column: span 1 !important; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr) !important; }
  .gallery-item { grid-column: span 1 !important; }
  .marquee__track { font-size: 1.1rem; }
}

/* =============================================
   LIVELY LAYOUT – Bilder im Fluss verteilt
   ============================================= */

/* === ABOUT: Bild-Collage statt Stats-Karten === */
.about__visual {
  position: relative;
  display: block;
  min-height: 520px;
}

.about__photo {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  transition: transform 0.6s ease;
}

.about__photo:hover { transform: translateY(-8px) rotate(0deg) !important; }

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.about__photo figcaption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--white);
  background: rgba(13, 43, 26, 0.7);
  padding: 0.4rem 0.8rem;
  backdrop-filter: blur(6px);
}

.about__photo:not(.about__photo--small) {
  top: 0;
  right: 0;
  width: 75%;
  height: 360px;
  transform: rotate(1.5deg);
}

.about__photo--small {
  bottom: 0;
  left: 0;
  width: 55%;
  height: 240px;
  transform: rotate(-2deg);
  z-index: 2;
  border: 6px solid var(--cream);
}

/* Stats jetzt unten als horizontale Editorial-Reihe */
.section--dark .about__stats {
  margin-top: 6rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  grid-template-columns: repeat(4, 1fr) !important;
  display: grid !important;
  gap: 2rem !important;
}

/* === SERVICES: Bild als 7. Karte === */
.service-card--image {
  padding: 0 !important;
  overflow: hidden;
  position: relative;
  min-height: 280px;
  border: none !important;
  background: var(--green-dark) !important;
  grid-column: span 2;
}

.service-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: saturate(1.1);
}

.service-card--image::before { display: none; }
.service-card--image:hover img { transform: scale(1.08); }

.service-card--image::after {
  content: '↗';
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--white);
  background: rgba(13,43,26,0.6);
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  z-index: 2;
}

/* Re-jiggle service grid for new image card === */
.services__grid > .service-card:nth-child(1) { grid-column: span 3; background: var(--cream) !important; }
.services__grid > .service-card:nth-child(2) { grid-column: span 3; }
.services__grid > .service-card:nth-child(3) { grid-column: span 2; }
.services__grid > .service-card:nth-child(4) { grid-column: span 2; background: var(--green-dark) !important; color: var(--white); }
.services__grid > .service-card:nth-child(5) { grid-column: span 2; }
.services__grid > .service-card:nth-child(6) { grid-column: span 4; background: var(--gold) !important; color: var(--green-dark); }
.services__grid > .service-card:nth-child(7) { grid-column: span 2; }

/* === SPEISEN Layout: Bilder + Menu Editorial === */
.speisen__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 4rem;
  margin-bottom: 1rem;
}

.speisen__photo {
  position: relative;
  overflow: hidden;
  height: 320px;
  transition: transform 0.6s ease;
}

.speisen__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.speisen__photo:hover img { transform: scale(1.06); }

.speisen__photo figcaption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  letter-spacing: 0.02em;
}

.speisen__photo:nth-child(1) { transform: translateY(-20px); }
.speisen__photo:nth-child(2) { transform: translateY(20px); }

/* === PULL QUOTE mit Bildern an den Seiten === */
.pullquote { padding: 10rem 0; }

.pullquote__photo {
  position: absolute;
  width: 200px;
  height: 260px;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  opacity: 0.85;
}

.pullquote__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}

.pullquote__photo--left {
  top: 4rem;
  left: 5%;
  transform: rotate(-6deg);
}

.pullquote__photo--right {
  bottom: 4rem;
  right: 5%;
  transform: rotate(7deg);
}

/* === GALLERY: schlanker, aber mit Polaroid-Vibe === */
.gallery__grid {
  grid-template-columns: repeat(6, 1fr) !important;
  grid-auto-rows: 200px !important;
}

.gallery__grid > .gallery-item:nth-child(1) { grid-column: span 4; grid-row: span 2; transform: rotate(-1deg); }
.gallery__grid > .gallery-item:nth-child(2) { grid-column: span 2; transform: rotate(1deg); }
.gallery__grid > .gallery-item:nth-child(3) { grid-column: span 2; transform: rotate(-0.5deg); }
.gallery__grid > .gallery-item:nth-child(4) { grid-column: span 3; grid-row: span 2; transform: rotate(0.8deg); margin-top: 2rem; }
.gallery__grid > .gallery-item:nth-child(5) { grid-column: span 3; transform: rotate(-1deg); margin-top: 2rem; }

.gallery-item {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.gallery-item:hover {
  transform: rotate(0deg) scale(1.02) !important;
  z-index: 5;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

/* === MARQUEE etwas dezenter === */
.marquee { padding: 1rem 0; }
.marquee__track { font-size: 1.25rem; }

/* === Mehr Lebendigkeit: schwebende Akzent-Linien === */
.section--dark .container,
.section--green .container { position: relative; }

/* Responsive: das ganze Bild-Geraffel auf mobile aufräumen */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr !important; }
  .about__visual { min-height: 400px; }
  .speisen__photo:nth-child(1),
  .speisen__photo:nth-child(2) { transform: none; }
  .gallery__grid > .gallery-item { transform: none !important; margin-top: 0 !important; }
  .services__grid > .service-card:nth-child(6) { grid-column: span 4 !important; }
  .services__grid > .service-card:nth-child(7) { grid-column: span 4 !important; min-height: 200px; }
}

@media (max-width: 768px) {
  .about__photo:not(.about__photo--small) { width: 100%; height: 240px; transform: none; position: relative; }
  .about__photo--small { display: none; }
  .speisen__layout { grid-template-columns: 1fr; }
  .speisen__photo { height: 240px; }
  .pullquote__photo { display: none; }
  .section--dark .about__stats { grid-template-columns: repeat(2, 1fr) !important; margin-top: 3rem; }
  .gallery__grid {
    grid-template-columns: 1fr !important;
    grid-auto-rows: 240px !important;
  }
  .gallery__grid > .gallery-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}

/* =============================================
   SPEISEN HERO: Einzelnes Bild + neutrale Caption
   ============================================= */
.speisen__hero {
  position: relative;
  margin: 4rem 0 5rem;
  height: clamp(360px, 48vw, 540px);
  overflow: hidden;
}

.speisen__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transition: transform 1.2s ease;
}

.speisen__hero:hover img { transform: scale(1.04); }

.speisen__hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(13, 43, 26, 0.55) 100%
);
  pointer-events: none;
}

.speisen__hero-caption {
  position: absolute;
  left: 2.5rem;
  bottom: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--white);
  max-width: 600px;
}

.speisen__hero-meta {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  color: var(--gold-light);
  border-left: 2px solid var(--gold);
  padding-left: 0.75rem;
}

.speisen__hero-line {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

/* =============================================
   INTERLUDE: Full-Bleed Atmosphäre zwischen Speisen + Kontakt
   ============================================= */
.interlude {
  position: relative;
  height: clamp(380px, 50vh, 560px);
  overflow: hidden;
  background: var(--green-dark);
}

.interlude__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
  transform: scale(1.02);
}

.interlude__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 43, 26, 0.4) 0%,
    rgba(13, 43, 26, 0.15) 40%,
    rgba(13, 43, 26, 0.7) 100%
);
}

.interlude__caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 2;
}

.interlude__line {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  color: var(--white);
  text-align: center;
  max-width: 800px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
  .speisen__hero-caption { left: 1.25rem; bottom: 1.25rem; }
  .interlude { height: 320px; }
}

/* === Service card photo icons === */
.service-card__icon {
  display: inline-grid !important;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 2rem !important;
  padding: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.4),
    0 12px 30px rgba(13, 43, 26, 0.16);
  opacity: 1 !important;
  overflow: hidden;
}

.service-card__icon img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 360ms ease, filter 360ms ease;
}

.service-card:hover .service-card__icon img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.03);
}

/* === Legal pages === */
.legal-page {
  background: var(--cream);
  color: var(--green-dark);
  cursor: auto;
}

.legal-page .nav {
  background: rgba(13, 43, 26, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  padding: 1rem 2rem;
}

.legal-page .nav__logo {
  opacity: 1;
}

.legal-main {
  min-height: 70vh;
  padding: 8rem 1.5rem 5rem;
  background:
    linear-gradient(180deg, rgba(245, 240, 232, 0.96), rgba(245, 240, 232, 1)),
    var(--cream);
}

.legal-content {
  width: min(100%, 720px);
  margin: 0 auto;
  font-family: var(--font-sans);
  color: var(--green-dark);
}

.legal-content h1,
.legal-content h2 {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--green-dark);
}

.legal-content h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.95;
  margin: 0 0 1.25rem;
}

.legal-content h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.legal-content section {
  padding: 2rem 0;
  border-top: 1px solid rgba(201, 168, 76, 0.45);
}

.legal-content p,
.legal-content li {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(13, 43, 26, 0.82);
}

.legal-content p + p {
  margin-top: 0.85rem;
}

.legal-content a {
  color: var(--green-mid);
  text-decoration: underline;
  text-decoration-color: rgba(201, 168, 76, 0.7);
  text-underline-offset: 0.18em;
}

.legal-intro {
  font-size: 1.15rem !important;
  color: rgba(13, 43, 26, 0.7) !important;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .legal-page .nav {
    padding: 1rem 1.25rem;
  }

  .legal-main {
    padding: 7rem 1.25rem 4rem;
  }
}

/* =============================================
   PHOTO DISTRIBUTION REWORK – cleaner editorial
   ============================================= */

/* === ABOUT: Eine clean composierte Editorial-Karte === */
.about__visual { min-height: auto !important; position: relative; }

.about__photo,
.about__photo:not(.about__photo--small) {
  position: relative !important;
  width: 100% !important;
  height: clamp(420px, 56vw, 580px) !important;
  transform: none !important;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  overflow: hidden;
}

.about__photo--small { display: none !important; }

.about__photo img {
  filter: saturate(1.05) contrast(1.05) brightness(0.95);
  transition: transform 1.2s ease;
}

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

.about__photo figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,43,26,0.85), transparent);
  padding: 3rem 1.5rem 1.25rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--font-display);
  letter-spacing: 0.3em;
  color: var(--white);
  font-size: 0.85rem;
}

.about__photo figcaption span:first-child {
  color: var(--gold);
  font-size: 1.1rem;
}

.about__photo figcaption span:last-child {
  border-left: 1px solid rgba(255,255,255,0.3);
  padding-left: 1rem;
  opacity: 0.9;
}

/* === MOMENTE: Editorial-Reihe mit Magazin-Captions === */
.moments {
  background: var(--cream);
  padding: 8rem 0 9rem;
  position: relative;
  overflow: hidden;
}

.moments .section__eyebrow { color: var(--gold-deep); }

.moments__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}

.moments__item {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: var(--green-dark);
  box-shadow: 0 20px 50px rgba(13,43,26,0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.moments__item:nth-child(1) { transform: translateY(40px); }
.moments__item:nth-child(2) { transform: translateY(0); }
.moments__item:nth-child(3) { transform: translateY(40px); }
.moments__item:nth-child(4) { transform: translateY(0); }

.moments__item:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 30px 70px rgba(13,43,26,0.3);
}

.moments__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transition: transform 1s ease;
}

.moments__item:hover img { transform: scale(1.06); }

.moments__item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.25rem 1rem;
  background: linear-gradient(to top, rgba(13,43,26,0.85) 0%, transparent 100%);
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  color: var(--white);
}

.moments__num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.moments__label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border-left: 1px solid rgba(255,255,255,0.4);
  padding-left: 0.75rem;
  opacity: 0.9;
}

.moments__item--wide {
  grid-column: span 4;
  height: 280px !important;
  margin-top: 1rem;
  transform: none !important;
}

.moments__item--wide:hover { transform: translateY(-4px) !important; }

/* === Pullquote braucht jetzt mehr Atemraum === */
.pullquote { padding: 9rem 0 7rem; }

@media (max-width: 1024px) {
  .moments__grid { grid-template-columns: repeat(2, 1fr); }
  .moments__item { transform: none !important; }
  .moments__item--wide { grid-column: span 2; }
}

@media (max-width: 640px) {
  .moments__grid { grid-template-columns: 1fr; }
  .moments__item { height: 280px; }
  .moments__item--wide { grid-column: span 1; }
  .about__photo { height: 360px !important; }
}

/* =============================================
   NAVBAR REFINED – sticky state schöner
   ============================================= */

/* Auto-Logo verstecken — wir haben unser eigenes */
.nav .js-nav-logo { display: none !important; }

/* Unser Logo immer sichtbar im sticky state (nutzt .js-sticky) */
.nav.js-sticky .nav__logo,
.nav.scrolled .nav__logo {
  opacity: 1 !important;
}

/* Sticky Navbar: cream Background, dark Text — passt zum Editorial-Look */
.nav.js-sticky {
  background: rgba(245, 240, 232, 0.94) !important;
  -webkit-backdrop-filter: blur(20px) saturate(140%) !important;
  backdrop-filter: blur(20px) saturate(140%) !important;
  box-shadow: 0 1px 0 rgba(13, 43, 26, 0.06), 0 8px 30px rgba(13, 43, 26, 0.06) !important;
  border-bottom: 1px solid rgba(13, 43, 26, 0.06);
  padding: 1rem 2rem !important;
}

/* Logo styling im sticky state */
.nav.js-sticky .nav__logo {
  color: var(--green-dark);
}

.nav.js-sticky .nav__logo-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.nav.js-sticky .nav__logo-icon {
  color: var(--gold-deep);
  width: 32px;
}

/* Nav-Links im sticky state — dunkel auf hell */
.nav.js-sticky .nav__links a {
  color: var(--text-dark);
  font-family: var(--font-display);
  letter-spacing: 0.3em;
}

.nav.js-sticky .nav__links a:hover {
  color: var(--gold-deep);
}

.nav.js-sticky .nav__links a::after {
  background: var(--gold-deep);
}

/* Hamburger Linien dunkel im sticky state */
.nav.js-sticky .nav__hamburger span {
  background: var(--green-dark);
}

/* Auch js-nav-toggle dunkel wenn sticky */
.nav.js-sticky .js-nav-toggle {
  background: rgba(13, 43, 26, 0.08) !important;
  color: var(--green-dark) !important;
}

/* === Status Pill ("Jetzt geöffnet / Geschlossen") aufpolieren === */
.nav.js-sticky [class*="status"],
.nav.js-sticky [class*="opening"],
.nav.js-sticky .opening-status,
.nav.js-sticky .nav-status {
  background: rgba(13, 43, 26, 0.92) !important;
  color: var(--cream) !important;
  font-family: var(--font-display) !important;
  letter-spacing: 0.15em !important;
  border-radius: 999px !important;
  padding: 0.5rem 1rem !important;
  font-size: 0.8rem !important;
  border: 1px solid rgba(201, 168, 76, 0.25) !important;
}

/* Default state (über Hero, vor Scroll) — Status Pill auch dort hübsch */
.nav [class*="status"],
.nav .opening-status,
.nav .nav-status {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--font-display);
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
}

/* Active section highlight (.is-active class) — etwas dezenter */
.nav__links a.is-active,
.nav__links li a.is-active {
  color: var(--gold) !important;
}
.nav__links a.is-active::after,
.nav__links li a.is-active::after {
  width: 100% !important;
}
.nav.js-sticky .nav__links a.is-active {
  color: var(--gold-deep) !important;
}

/* =============================================
   NAVBAR FINAL OVERRIDE – maximale Spezifität
   ============================================= */

/* doppeltes Logo definitiv weg */
.nav .js-nav-logo,
nav.nav .js-nav-logo,
.nav > .js-nav-logo {
  display: none !important;
  visibility: hidden !important;
}

/* Sticky Navbar – cremige Glas-Optik, klar lesbar */
nav.nav.js-sticky,
.nav.js-sticky {
  background: rgba(247, 243, 235, 0.96) !important;
  -webkit-backdrop-filter: blur(24px) saturate(160%) !important;
  backdrop-filter: blur(24px) saturate(160%) !important;
  box-shadow:
    0 1px 0 rgba(13, 43, 26, 0.08),
    0 12px 40px rgba(13, 43, 26, 0.08) !important;
  border-bottom: none !important;
  padding: 0.9rem 2rem !important;
}

/* Logo: sichtbar machen, mit Fisch-Icon */
nav.nav.js-sticky .nav__logo,
.nav.js-sticky a.nav__logo,
.nav.scrolled .nav__logo {
  opacity: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.65rem !important;
  color: #0d2b1a !important;
}

nav.nav.js-sticky .nav__logo-icon,
.nav.js-sticky .nav__logo-icon {
  display: block !important;
  width: 38px !important;
  height: auto !important;
  color: #8a6a1f !important;
  flex-shrink: 0 !important;
}

nav.nav.js-sticky .nav__logo-text,
.nav.js-sticky .nav__logo-text {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 700 !important;
  font-size: 1.25rem !important;
  letter-spacing: -0.01em !important;
  color: #0d2b1a !important;
  line-height: 1 !important;
}

/* Nav-Links: dunkelgrün auf cream, klar lesbar */
nav.nav.js-sticky .nav__links a,
.nav.js-sticky .nav__links a,
.nav.js-sticky .nav__links li a,
.nav.js-sticky ul a {
  color: #0d2b1a !important;
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.32em !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}

nav.nav.js-sticky .nav__links a:hover,
.nav.js-sticky .nav__links a:hover {
  color: #8a6a1f !important;
  opacity: 1;
}

nav.nav.js-sticky .nav__links a::after,
.nav.js-sticky .nav__links a::after {
  background: #8a6a1f !important;
  bottom: -6px !important;
  height: 1.5px !important;
}

nav.nav.js-sticky .nav__links a.is-active,
.nav.js-sticky .nav__links a.is-active {
  color: #8a6a1f !important;
  opacity: 1;
}
.nav.js-sticky .nav__links a.is-active::after { width: 100% !important; }

/* Status-Pill — klar editorial im sticky state */
nav.nav.js-sticky [class*="status" i],
nav.nav.js-sticky [class*="opening" i],
nav.nav.js-sticky .nav-status,
nav.nav.js-sticky .opening-status,
nav.nav.js-sticky .opening-status-pill {
  background: #0d2b1a !important;
  color: #f5f0e8 !important;
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.18em !important;
  border-radius: 999px !important;
  padding: 0.55rem 1.1rem !important;
  border: 1px solid rgba(201, 168, 76, 0.35) !important;
  box-shadow: 0 4px 14px rgba(13, 43, 26, 0.18) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
}

/* Hamburger im sticky state dunkel */
nav.nav.js-sticky .nav__hamburger span,
nav.nav.js-sticky .js-nav-toggle,
.nav.js-sticky .nav__hamburger span {
  background: #0d2b1a !important;
  color: #0d2b1a !important;
}

nav.nav.js-sticky .js-nav-toggle {
  background: rgba(13, 43, 26, 0.08) !important;
}

/* Default state (über Hero) — Logo immer mit Icon, falls scroll-Trigger nicht greift */
.nav .nav__logo {
  opacity: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.65rem !important;
}

.nav__logo-icon {
  display: block !important;
  width: 38px !important;
  height: auto !important;
}

/* Im default state (Hero) — Logo Icon in Gold, Text weiß */
.nav:not(.js-sticky):not(.scrolled) .nav__logo-icon {
  color: #c9a84c !important;
}

.nav:not(.js-sticky):not(.scrolled) .nav__logo-text {
  color: #ffffff !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 700 !important;
  font-size: 1.2rem !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* Status-Pill default state */
.nav:not(.js-sticky) [class*="status" i],
.nav:not(.js-sticky) [class*="opening" i] {
  background: rgba(255, 255, 255, 0.14) !important;
  color: #ffffff !important;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.18em !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: 999px !important;
}

/* =============================================
   NAV LAYOUT FIX – Links zentrieren + Pill aufpolieren
   ============================================= */

/* 3-Spalten Grid: Logo links · Links Mitte · Status/Hamburger rechts */
.nav__inner {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  gap: 1.5rem !important;
}

.nav__logo { justify-self: start !important; }

.nav__links {
  justify-self: center !important;
  display: flex !important;
  gap: 2.5rem !important;
}

/* Alles was rechts in die Nav landet (Hamburger, Status-Pill) */
.nav__hamburger,
.nav .js-nav-toggle,
.nav [class*="status" i],
.nav [class*="opening" i],
.nav .nav-status,
.nav .opening-status,
.nav .opening-status-pill {
  justify-self: end !important;
}

/* Wenn Pill UND Hamburger existieren – beide rechts gruppieren */
.nav__inner > [class*="status" i],
.nav__inner > [class*="opening" i] {
  grid-column: 3 !important;
}

/* === STATUS PILL clean editorial === */

/* Default state (über Hero) */
.nav [class*="status" i],
.nav [class*="opening" i],
.nav .opening-status-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  -webkit-backdrop-filter: blur(14px) saturate(140%) !important;
  backdrop-filter: blur(14px) saturate(140%) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.22em !important;
  padding: 0.5rem 1rem !important;
  border-radius: 999px !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  line-height: 1 !important;
  box-shadow: none !important;
}

/* Sticky state (cremiger Glasbar) */
nav.nav.js-sticky [class*="status" i],
nav.nav.js-sticky [class*="opening" i],
.nav.js-sticky .opening-status-pill {
  background: rgba(13, 43, 26, 0.94) !important;
  color: #f5f0e8 !important;
  border: 1px solid rgba(201, 168, 76, 0.3) !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  box-shadow: 0 4px 14px rgba(13, 43, 26, 0.2) !important;
}

/* Indicator-Dot (🟢/🔴) — durch CSS-Pill ersetzen falls möglich */
.nav [class*="status" i] [class*="dot" i],
.nav [class*="opening" i] [class*="dot" i],
.nav [class*="status" i]::before,
.nav .opening-status-pill::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Mobile/Tablet: Hamburger ab ≤1024px, Links erst sichtbar wenn .nav.js-menu-open */
@media (max-width: 1024px) {
  .nav__inner {
    grid-template-columns: 1fr auto !important;
  }
  .nav__hamburger { display: flex !important; }
  /* Standardzustand: Links sind versteckt */
  .nav__links { display: none !important; }
  /* Geöffnetes Menü: Fullscreen-Overlay */
  .nav.js-menu-open .nav__links,
  .nav.menu-open .nav__links {
    display: flex !important;
    position: fixed !important;
    inset: 0 !important;
    top: 0 !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(13, 43, 26, 0.97) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    backdrop-filter: blur(20px) !important;
    gap: 2.5rem !important;
    z-index: 1000 !important;
  }
  .nav.js-menu-open .nav__links a,
  .nav.menu-open .nav__links a {
    font-size: 1.5rem !important;
    color: #f5f0e8 !important;
  }
  .nav [class*="status" i],
  .nav [class*="opening" i] {
    font-size: 0.7rem !important;
    padding: 0.4rem 0.8rem !important;
    letter-spacing: 0.15em !important;
  }
}

/* =============================================
   NAVIGATION – komplett refined editorial
   ============================================= */

/* === Default state (über Hero) === */
.nav {
  padding: 1.4rem 2.5rem !important;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.nav__inner {
  max-width: 1400px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  gap: 2rem !important;
}

/* === LOGO – elegant mit Subtitle === */
.nav__logo {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  opacity: 1 !important;
  position: relative;
  padding-right: 1rem;
}

.nav__logo::after {
  content: '';
  position: absolute;
  right: -0.5rem;
  top: 25%;
  bottom: 25%;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.nav.js-sticky .nav__logo::after {
  background: rgba(13, 43, 26, 0.12);
}

.nav__logo-icon {
  width: 34px !important;
  height: auto !important;
  transition: transform 0.4s ease, color 0.4s ease;
}

.nav__logo:hover .nav__logo-icon {
  transform: translateX(-2px) rotate(-3deg);
}

.nav__logo-text {
  display: flex !important;
  flex-direction: column !important;
  line-height: 1 !important;
  gap: 0.25rem !important;
  font-style: normal !important;
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
}

.nav__logo-text::after {
  content: 'Lech am Arlberg';
  font-family: 'Playfair Display', Georgia, serif !important;
  font-style: italic;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: none;
  opacity: 0.6;
}

/* === NAV LINKS – generös und elegant === */
.nav__links {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  gap: 2.75rem !important;
  justify-self: center !important;
}

.nav__links li { list-style: none; }

.nav__links a {
  position: relative;
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.32em !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav__links a::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transform: translateX(-50%) translateY(-4px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.nav__links a::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  width: 0 !important;
  height: 1px !important;
  background: var(--gold) !important;
  transform: translateX(-50%) !important;
  transition: width 0.35s ease !important;
}

.nav__links a:hover {
  color: var(--gold) !important;
}

.nav__links a:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.nav__links a:hover::after {
  width: 80% !important;
}

.nav__links a.is-active {
  color: var(--gold) !important;
}
.nav__links a.is-active::after {
  width: 80% !important;
}

/* === RECHTE SEITE: Status minimal, ohne Pill === */
.nav__right,
.nav__inner > .nav__right,
.nav__inner > *:last-child:not(.nav__hamburger):not(.nav__logo):not(.nav__links) {
  justify-self: end !important;
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
}

/* === STATUS – kein Pill mehr, reine Typografie === */
.nav [class*="status" i],
.nav [class*="opening" i],
.nav .opening-status-pill {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.85) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.6rem !important;
  white-space: nowrap !important;
  line-height: 1 !important;
  position: relative;
  padding-left: 18px !important;
}

/* CSS-Dot vor dem Text — überschreibt das Emoji visuell */
.nav [class*="status" i]::before,
.nav [class*="opening" i]::before,
.nav .opening-status-pill::before {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: var(--green-accent) !important;
  box-shadow: 0 0 0 0 rgba(76, 175, 125, 0.6) !important;
  animation: navStatusPulse 2.4s ease-in-out infinite !important;
}

/* Wenn Status auf "geschlossen" steht — setzt eventuell Klasse, sonst greifen wir den Emoji im Text */
.nav [class*="status" i]:not(:has(::after))::before,
.nav .is-closed::before,
.nav [data-status="closed"]::before {
  background: #d97a4c !important;
  box-shadow: 0 0 0 0 rgba(217, 122, 76, 0.6) !important;
}

@keyframes navStatusPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 125, 0.5);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(76, 175, 125, 0);
  }
}

/* Emoji im Status-Text wegblenden (🟢/🔴) — durch unsichtbare font-size auf erstem Char */
.nav [class*="status" i] > *:first-child:not(:only-child),
.nav [class*="opening" i] > *:first-child:not(:only-child) {
  font-size: 0 !important;
  width: 0 !important;
  margin: 0 !important;
}

/* === STICKY STATE === */
.nav.js-sticky,
nav.nav.js-sticky {
  background: rgba(247, 243, 235, 0.96) !important;
  -webkit-backdrop-filter: blur(28px) saturate(160%) !important;
  backdrop-filter: blur(28px) saturate(160%) !important;
  box-shadow: none !important;
  padding: 1rem 2.5rem !important;
  border-bottom: 1px solid rgba(13, 43, 26, 0.08) !important;
}

/* Dünner Gold-Akzent unter sticky nav */
.nav.js-sticky::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(201, 168, 76, 0.4) 30%,
    rgba(201, 168, 76, 0.4) 70%,
    transparent 100%
);
}

.nav.js-sticky .nav__logo-text {
  color: var(--green-dark) !important;
}

.nav.js-sticky .nav__logo-text::after {
  color: var(--gold-deep) !important;
  opacity: 0.75;
}

.nav.js-sticky .nav__logo-icon {
  color: var(--gold-deep) !important;
}

.nav.js-sticky .nav__links a {
  color: rgba(13, 43, 26, 0.7) !important;
}

.nav.js-sticky .nav__links a:hover,
.nav.js-sticky .nav__links a.is-active {
  color: var(--gold-deep) !important;
}

.nav.js-sticky [class*="status" i],
.nav.js-sticky [class*="opening" i] {
  color: var(--green-dark) !important;
}

/* === Responsive === */
@media (max-width: 900px) {
  .nav { padding: 1rem 1.25rem !important; }
  .nav.js-sticky { padding: 0.85rem 1.25rem !important; }
  .nav__inner { grid-template-columns: 1fr auto !important; gap: 1rem !important; }
  .nav__links { display: none !important; }
  .nav__links.open { display: flex !important; }
  .nav__logo-text { font-size: 0.95rem !important; }
  .nav__logo-text::after { font-size: 0.62rem !important; }
  .nav__logo::after { display: none; }
  .nav [class*="status" i],
  .nav [class*="opening" i] { font-size: 0.65rem !important; letter-spacing: 0.2em !important; }
}

/* =============================================
   DISHES SHOWCASE – echte Gerichts-Fotos
   ============================================= */

.dishes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 4rem 0 5rem;
}

.dish {
  position: relative;
  overflow: hidden;
  height: 380px;
  background: var(--green-dark);
  box-shadow: 0 22px 60px rgba(0,0,0,0.35);
  transition: transform 0.55s ease, box-shadow 0.55s ease;
}

.dish:nth-child(1) { transform: translateY(0); }
.dish:nth-child(2) { transform: translateY(28px); }
.dish:nth-child(3) { transform: translateY(-14px); }
.dish:nth-child(4) { transform: translateY(20px); }

.dish:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

.dish img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
  transition: transform 1s ease;
}

.dish:hover img { transform: scale(1.06); }

.dish figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 4rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(13,43,26,0.95) 0%, rgba(13,43,26,0.6) 50%, transparent 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.dish__name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--gold-light);
}

.dish__note {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.menu__note {
  margin-top: 3rem;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.25);
}

.menu__note strong {
  color: var(--gold-light);
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.menu__note a {
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.5);
  font-style: normal;
  font-weight: 500;
  transition: color 0.2s;
}
.menu__note a:hover { color: var(--gold-light); }

@media (max-width: 1024px) {
  .dishes { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .dish:nth-child(n) { transform: none; }
}

@media (max-width: 640px) {
  .dishes { grid-template-columns: 1fr; }
  .dish { height: 320px; }
}

/* =============================================
   PULLQUOTE mit subtilem Bild-Hintergrund
   ============================================= */

.pullquote--bg { position: relative; overflow: hidden; background: var(--cream); }

.pullquote__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) saturate(0.7);
  opacity: 0.35;
  z-index: 0;
}

.pullquote__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(245, 240, 232, 0.45) 0%, rgba(245, 240, 232, 0.85) 70%, rgba(245, 240, 232, 0.95) 100%);
  z-index: 1;
}

.pullquote--bg .container { position: relative; z-index: 2; }

/* =============================================
   SPEISEN – Editorial Restaurant-Karte
   ============================================= */

.menu-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 3.5rem;
  margin-top: 5rem;
  align-items: start;
}

/* --- Linke Spalte: Foto + Zitat --- */
.menu-aside { position: sticky; top: 6rem; display: flex; flex-direction: column; gap: 2rem; }

.menu-aside__photo {
  position: relative;
  overflow: hidden;
  height: 380px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.35);
}

.menu-aside__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transition: transform 1s ease;
}

.menu-aside__photo:hover img { transform: scale(1.05); }

.menu-aside__photo figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 3rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(13,43,26,0.95), transparent);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--white);
}

.menu-aside__quote {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 2.5rem;
  border-left: 1px solid rgba(201, 168, 76, 0.5);
}

.menu-aside__mark {
  position: absolute;
  top: -1rem;
  left: 0.5rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.5;
}

.menu-aside__quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.75rem;
}

.menu-aside__by {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* --- Rechte Spalte: Menüblöcke --- */
.menu-list { display: flex; flex-direction: column; gap: 3.5rem; }

.menu-block {
  background: transparent;
  border: none;
  padding: 0;
}

.menu-block__head {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.menu-block__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 700;
}

.menu-block__title {
  font-family: var(--font-serif) !important;
  font-style: italic !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: var(--cream) !important;
  letter-spacing: -0.01em;
  line-height: 1 !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.menu-block__title span {
  font-style: italic;
  color: rgba(245, 240, 232, 0.6);
}

.menu-block__line {
  display: block;
  height: 1px;
  background: linear-gradient(to right, rgba(201,168,76,0.5), transparent);
}

.menu-block__items { list-style: none; margin: 0; padding: 0; }

.menu-block__items li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.07);
  font-family: var(--font-serif);
}

.menu-block__items li:last-child { border-bottom: none; }

.mi__name {
  font-size: 1.05rem;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.mi__name small {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-style: normal;
  color: rgba(245, 240, 232, 0.55);
  letter-spacing: 0.01em;
  margin-top: 0.1rem;
}

.mi__dots {
  align-self: end;
  border-bottom: 1px dotted rgba(245, 240, 232, 0.25);
  height: 1px;
  min-width: 30px;
  margin-bottom: 0.4rem;
}

.mi__price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  white-space: nowrap;
  align-self: start;
}

.mi__price::before { content: '€ '; opacity: 0.6; font-size: 0.85em; }
.mi__price:has(em)::before { display: none; }

.mi__price em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0;
  color: rgba(245, 240, 232, 0.7);
}

.mi--special .mi__name {
  color: var(--gold-light);
  font-style: italic;
}

/* --- Footer Info-Bar --- */
.menu-footer {
  margin-top: 5rem;
  padding: 2rem 2.5rem;
  background: rgba(0,0,0,0.18);
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.menu-footer__item { display: flex; flex-direction: column; gap: 0.35rem; }

.menu-footer__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.menu-footer__value {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream);
}

.menu-footer__value--link {
  border-bottom: 1px solid rgba(201, 168, 76, 0.4);
  transition: color 0.2s ease;
}
.menu-footer__value--link:hover { color: var(--gold-light); }

.menu-footer__divider {
  width: 1px;
  height: 40px;
  background: rgba(201, 168, 76, 0.3);
}

@media (max-width: 1024px) {
  .menu-layout { grid-template-columns: 1fr; gap: 3rem; }
  .menu-aside { position: relative; top: 0; flex-direction: row; gap: 1.5rem; }
  .menu-aside__photo { flex: 1; height: 280px; }
  .menu-aside__quote { flex: 1; }
}

@media (max-width: 720px) {
  .menu-aside { flex-direction: column; }
  .menu-block__head { grid-template-columns: auto 1fr; }
  .menu-block__line { grid-column: 2; }
  .menu-block__title { font-size: 1.6rem !important; }
  .mi__name { font-size: 0.98rem; }
  .menu-footer { flex-direction: column; gap: 1.25rem; padding: 1.5rem; text-align: center; }
  .menu-footer__divider { display: none; }
  .menu-footer__item { align-items: center; }
}

/* =============================================
   PULLQUOTE FIX – Text direkt auf Bild
   ============================================= */
.pullquote--bg {
  background: var(--green-dark) !important;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.pullquote--bg .pullquote__bg {
  filter: saturate(0.85) contrast(1.05) !important;
  opacity: 1 !important;
}

.pullquote--bg .pullquote__veil {
  background:
    linear-gradient(
      180deg,
      rgba(13, 43, 26, 0.55) 0%,
      rgba(13, 43, 26, 0.35) 50%,
      rgba(13, 43, 26, 0.7) 100%
  ) !important;
}

.pullquote--bg .pullquote__mark {
  color: rgba(201, 168, 76, 0.45) !important;
  opacity: 1 !important;
}

.pullquote--bg .pullquote__text {
  color: var(--white) !important;
  text-shadow: 0 2px 30px rgba(0,0,0,0.6);
}

.pullquote--bg .pullquote__text em {
  background: linear-gradient(transparent 65%, rgba(201,168,76,0.55) 65%) !important;
  color: var(--white) !important;
}

.pullquote--bg .pullquote__cite {
  color: var(--gold-light) !important;
}

/* =============================================
   SPEISEKARTE PAGE
   ============================================= */

body.page--menu { background: var(--green-dark); color: var(--cream); }

/* Hero der Speisekarten-Seite */
.menu-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
}

.menu-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
  z-index: 0;
}

.menu-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,43,26,0.7) 0%, rgba(13,43,26,0.5) 40%, rgba(13,43,26,0.95) 100%);
  z-index: 1;
}

.menu-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: var(--white);
}

.menu-hero .hero__eyebrow {
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.menu-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.menu-hero__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.menu-hero__subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.menu-hero__meta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 1rem 1.75rem;
  background: rgba(0,0,0,0.3);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 999px;
}

.menu-hero__meta a {
  color: var(--gold-light);
  border-bottom: 1px solid rgba(232, 201, 122, 0.5);
}

.menu-hero__dot { opacity: 0.5; }

/* Die Speisekarte */
.speisekarte {
  background: var(--green-dark);
  padding: 6rem 2rem 8rem;
  position: relative;
}

.speisekarte__container {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.menu-block--page {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 2.5rem 2.5rem 2rem;
  position: relative;
  transition: border 0.4s ease;
}

.menu-block--page:hover {
  border-color: rgba(201,168,76,0.35);
}

.menu-block--feature {
  background: linear-gradient(180deg, rgba(201,168,76,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border-color: rgba(201,168,76,0.35);
}

.menu-block--feature::before {
  content: 'Spezialität des Hauses';
  position: absolute;
  top: -0.7rem;
  right: 2rem;
  background: var(--gold);
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

.menu-block--kids .menu-block__num {
  color: var(--gold);
  font-size: 2rem;
}

.menu-block--dessert .menu-block__items--simple li {
  grid-template-columns: 1fr auto;
}

/* Allergen-Tags hinter Gerichtsbeschreibungen */
.mi__allergens {
  display: inline-block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.7);
  margin-left: 0.4rem;
  padding: 0.05rem 0.45rem;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 2px;
  white-space: nowrap;
  vertical-align: baseline;
}

/* Sektions-Untertitel (z. B. „Seniorenteller", „zu den selbst gefangenen Fischen") */
.menu-block__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(245,240,232,0.6);
  text-align: center;
  margin: -0.4rem 0 1.2rem;
  letter-spacing: 0.02em;
}
.menu-block__sub--inline {
  margin: 2rem 0 0.8rem;
  text-align: left;
  font-size: 0.9rem;
  color: rgba(201,168,76,0.75);
}

/* Allergen-Legende am Fuß der Speisekarte */
.menu-allergens {
  max-width: 860px;
  margin: 3rem auto 0;
  padding: 1.4rem 1.8rem;
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 4px;
  background: rgba(11,36,23,0.35);
}
.menu-allergens h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  margin: 0 0 0.6rem;
  color: rgba(201,168,76,0.9);
  letter-spacing: 0.05em;
}
.menu-allergens p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  line-height: 1.9;
  color: rgba(245,240,232,0.7);
}
.menu-allergens strong {
  color: rgba(201,168,76,0.95);
  font-weight: 600;
  margin-right: 0.15rem;
}

/* Footer der Speisekarte */
.speisekarte__note {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.55);
  text-align: center;
  max-width: 720px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.speisekarte__back {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .menu-hero { padding: 6rem 1.25rem 3.5rem; }
  .menu-block--page { padding: 1.75rem 1.5rem; }
  .menu-block--feature::before { right: 0.5rem; font-size: 0.55rem; }
  .menu-hero__meta {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
  }
  .menu-hero__dot { display: none; }
}

/* =============================================
   SPEISEN TEASER auf Startseite
   ============================================= */

.speisen-teaser {
  margin-top: 4rem;
  padding: 3.5rem 3rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(201,168,76,0.06) 100%);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}

.speisen-teaser__lead {
  position: relative;
  padding-left: 2.5rem;
  border-left: 1px solid rgba(201,168,76,0.4);
}

.speisen-teaser__mark {
  position: absolute;
  top: -1.5rem;
  left: 0.5rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.5;
}

.speisen-teaser__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.45;
  color: var(--cream);
  margin-bottom: 0.85rem;
}

.speisen-teaser__by {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.speisen-teaser__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.speisen-teaser__hint {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(245,240,232,0.6);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .speisen-teaser {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.75rem;
    gap: 2rem;
  }
  .speisen-teaser__lead { padding-left: 1.5rem; }
}

/* =============================================
   INLINE Speisekarte auf Startseite
   ============================================= */

.speisekarte__container--inline {
  max-width: 920px;
  margin: 5rem auto 0;
  padding: 0;
  gap: 3rem;
}

/* Auf Startseite (im grünen Speisen-Bereich) — Karten leicht heller fürs Editorial Feel */
#speisen .menu-block--page {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(201,168,76,0.18);
  padding: 2.25rem 2.5rem 1.75rem;
}

#speisen .menu-block--feature {
  background: linear-gradient(180deg, rgba(201,168,76,0.08) 0%, rgba(255,255,255,0.03) 100%);
  border-color: rgba(201,168,76,0.4);
}

/* Den alten menu-footer kompletten Stil neutralisieren falls noch irgendwo geladen */
.menu-footer { display: none !important; }

@media (max-width: 720px) {
  .speisekarte__container--inline { padding: 0; margin-top: 3rem; }
  #speisen .menu-block--page { padding: 1.75rem 1.5rem; }
}

/* Vignette am unteren Rand der grünen Speisen-Sektion entfernen */
.section--green::after,
#speisen::after { display: none !important; }

/* =============================================
   NEXT LEVEL POLISH
   ============================================= */

/* --- Hero Ken Burns: subtiler langsamer Zoom --- */
@keyframes heroKenBurns {
  0%   { transform: scale(1.08) translate3d(0, 0, 0); }
  50%  { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
  100% { transform: scale(1.08) translate3d(0, 0, 0); }
}

.hero__media {
  animation: heroKenBurns 38s ease-in-out infinite !important;
  transform-origin: center 30%;
}

/* --- Scroll Progress Bar (oben, Gold) --- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, var(--gold-light), var(--gold), var(--gold-deep));
  z-index: 10000;
  transition: width 0.05s linear;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.5);
}

/* --- Section Navigator: vertikale Dots rechts --- */
.section-nav {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 90;
  padding: 0.5rem;
}

.section-nav__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.25);
  border: 1px solid rgba(201, 168, 76, 0.4);
  cursor: pointer;
  position: relative;
  transition: background 0.3s, transform 0.3s;
}

.section-nav__dot:hover { background: rgba(201, 168, 76, 0.6); transform: scale(1.3); }

.section-nav__dot.is-active {
  background: var(--gold);
  transform: scale(1.4);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.5);
}

.section-nav__dot::before {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 1rem);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(13, 43, 26, 0.85);
  padding: 0.35rem 0.75rem;
  border-radius: 3px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.section-nav__dot:hover::before { opacity: 1; }

@media (max-width: 900px) {
  .section-nav { display: none; }
}

/* --- Section Eyebrow: animierter Goldstrich beim Reveal --- */
.section__eyebrow {
  overflow: visible;
}

.reveal.visible .section__eyebrow::before,
.section__eyebrow::before {
  animation: drawGoldLine 1.2s ease-out forwards;
  transform-origin: left;
}

@keyframes drawGoldLine {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* --- Refined Dish Hover: tieferes Lifting + Glow --- */
.dish {
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease, filter 0.6s ease;
}

.dish:hover {
  transform: translateY(-12px) !important;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 168, 76, 0.3);
}

.dish::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(201, 168, 76, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.dish:hover::after { opacity: 1; }

/* --- Hero Title: Gold em-Wörter bekommen subtilen Glow --- */
.hero__title em,
.section__title--display em {
  text-shadow: 0 0 30px rgba(201, 168, 76, 0.2);
  transition: text-shadow 0.6s ease;
}

.hero__title:hover em,
.section__title--display:hover em {
  text-shadow: 0 0 50px rgba(201, 168, 76, 0.5), 0 0 20px rgba(232, 201, 122, 0.3);
}

/* --- Smoother Section Transitions --- */
.section + .section,
.section + .interlude,
.section + .pullquote,
.pullquote + .section,
.interlude + .section { position: relative; }

/* --- Hero Side-Label und Corner-Meta animiert --- */
.hero__side-label,
.hero__corner-meta {
  animation: fadeInUp 1.5s ease-out 0.5s backwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(-50%) rotate(-90deg) translateX(20px); }
  to   { opacity: 1; }
}

.hero__corner-meta {
  animation: cornerFade 1.5s ease-out 0.8s backwards;
}

@keyframes cornerFade {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; }
}

/* --- Menu-Block items: subtile Gold-Linie animation --- */
.menu-block__items li {
  position: relative;
  transition: background 0.3s ease, padding 0.3s ease;
}

.menu-block__items li::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transform: translateY(-50%) translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-block__items li:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.menu-block__items li:hover .mi__name { color: var(--gold-light); }

/* --- Reveal: gestaffelte Animation mit subtilerem Curve --- */
.reveal {
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

/* --- Pullquote text: dezenter Effekt beim Reveal --- */
.pullquote__text {
  transition: opacity 1.2s ease, transform 1.2s ease, letter-spacing 1.5s ease;
}

/* --- Interlude: Ken Burns auch hier, ganz langsam --- */
.interlude__img {
  animation: heroKenBurns 50s ease-in-out infinite reverse;
}

/* --- Stats: Hover lifts the card --- */
.stat {
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transition: width 0.6s ease;
}

.stat:hover::before { width: 100%; }

/* --- Award-Karte mit subtilem Schimmer --- */
.award {
  position: relative;
  overflow: hidden;
}

.award::before {
  content: '';
  position: absolute;
  top: -50%; left: -100%;
  width: 80%;
  height: 200%;
  background: linear-gradient(115deg, transparent 30%, rgba(201, 168, 76, 0.15) 50%, transparent 70%);
  transition: left 1.5s ease;
}

.award:hover::before { left: 200%; }

/* =============================================
   AUS-DEN-SOCKEN-DESIGN
   ============================================= */

/* === MAGNETIC BUTTONS === */
.btn {
  transition: transform 0.18s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s ease, box-shadow 0.4s ease, color 0.3s ease !important;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn:hover::before { transform: translateX(110%); }

/* === GOLD PARTIKEL === */
.gold-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px rgba(232, 201, 122, 0.8), 0 0 12px rgba(201, 168, 76, 0.4);
  pointer-events: none;
  opacity: 0;
  z-index: 2;
}

@keyframes goldDrift {
  0%   { transform: translate3d(0, 0, 0) scale(0.5); opacity: 0; }
  10%  { opacity: 0.9; }
  60%  { opacity: 0.6; }
  100% { transform: translate3d(var(--drift-x, 60px), var(--drift-y, -200px), 0) scale(1); opacity: 0; }
}

.hero .gold-particle { animation: goldDrift var(--drift-duration, 10s) ease-out forwards; }

.pullquote--bg { position: relative; }
.pullquote--bg .gold-particle { animation: goldDrift var(--drift-duration, 12s) ease-out forwards; }

/* === HERO TITLE: Letter Curtain Reveal === */
.hero__title {
  position: relative;
  overflow: visible;
}

.hero-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(80%) rotateX(-40deg);
  transform-origin: bottom;
  animation: heroLetterRise 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes heroLetterRise {
  0%   { opacity: 0; transform: translateY(80%) rotateX(-40deg); filter: blur(8px); }
  60%  { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) rotateX(0); filter: blur(0); }
}

/* Hero subtitle erscheint nach Title */
.hero__subtitle, .hero__cta { animation: heroFadeIn 1.2s ease-out 1.6s backwards; }

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

/* === SECTION TITLE: Gold Curtain Wipe Reveal === */
.section__title--display {
  position: relative;
  display: inline-block;
}

.reveal .section__title--display::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform-origin: right;
  transform: scaleX(0);
  z-index: 2;
  pointer-events: none;
}

.reveal.visible .section__title--display::before {
  animation: curtainWipe 1.4s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

@keyframes curtainWipe {
  0%   { transform-origin: left;  transform: scaleX(0); }
  45%  { transform-origin: left;  transform: scaleX(1); }
  55%  { transform-origin: right; transform: scaleX(1); }
  100% { transform-origin: right; transform: scaleX(0); }
}

/* === 3D DISH TILT === */
.dishes {
  perspective: 1400px;
}

.dish {
  transform-style: preserve-3d;
  will-change: transform;
}

.dish > * {
  transform: translateZ(0);
  transition: transform 0.6s ease;
}

.dish:hover img { transform: scale(1.1) translateZ(40px) !important; }
.dish:hover figcaption { transform: translateZ(20px); }

/* === ANIMATED WATER WAVE (statisch SVG-Linien als deko) === */
.water-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
  background: var(--green-mid);
}

.water-divider svg {
  position: absolute;
  inset: 0;
  width: 200%;
  height: 100%;
  animation: waterFlow 18s linear infinite;
}

@keyframes waterFlow {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === MAGNETIC CURSOR-FOLLOW auf section nav dots === */
.section-nav__dot {
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s, box-shadow 0.4s;
}

/* === SCROLLBAR styling (Webkit) — Track unsichtbar, Thumb dezent === */
::-webkit-scrollbar { width: 8px; background: transparent; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.45);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
/* Firefox */
html { scrollbar-width: thin; scrollbar-color: rgba(201, 168, 76, 0.45) transparent; }

/* === SELECTION === */
::selection { background: var(--gold); color: var(--green-dark); }

/* === FOCUS RING GOLD PULSE === */
@keyframes goldFocusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(201, 168, 76, 0); }
}

a:focus-visible, button:focus-visible {
  animation: goldFocusPulse 1.4s ease-out infinite;
}

/* === SECTION ENTRANCE: parallax block reveal === */
.section--light, .section--green, .section--dark {
  will-change: transform;
}

/* === HEADER on hover MICRO TILT === */
.menu-block__title {
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  display: inline-block;
}
.menu-block:hover .menu-block__title { transform: translateX(8px); }

.menu-block__num {
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.5s;
  display: inline-block;
}
.menu-block:hover .menu-block__num {
  transform: rotate(-12deg) scale(1.15);
  color: var(--gold-light);
}

/* === LOGO ANIMIERT: Schwimm-Effekt === */
@keyframes fishSwim {
  0%, 100% { transform: translateX(0) rotate(0); }
  50%      { transform: translateX(2px) rotate(-3deg); }
}

.nav__logo:hover .nav__logo-icon { animation: fishSwim 0.6s ease-in-out infinite; }

/* === GOLD BAR oben am Page-Load (Curtain) === */
.page-curtain {
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  z-index: 99999;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: curtainLift 2.8s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

/* Curtain-Logo: identisch zum Nav-Logo (Fisch-Icon + zweizeiliger Schriftzug) */
.page-curtain__brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold);
  opacity: 0;
  animation: brandFlash 2.4s ease-out forwards;
}
.page-curtain__icon {
  width: clamp(56px, 7vw, 88px);
  height: auto;
  color: var(--gold);
  flex-shrink: 0;
}
.page-curtain__name {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  line-height: 1;
}
.page-curtain__primary {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
}
.page-curtain__secondary {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  letter-spacing: 0.05em;
  color: var(--gold-light, #d4b06a);
  line-height: 1;
}

@keyframes brandFlash {
  0%   { opacity: 0; transform: scale(0.9); }
  30%  { opacity: 1; transform: scale(1); }
  70%  { opacity: 1; transform: scale(1.02); }
  100% { opacity: 0; transform: scale(1.05); }
}

@keyframes curtainLift {
  0%, 60% { transform: translateY(0); }
  100%    { transform: translateY(-100%); }
}

/* === HERO BOTTOM GLOW === */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: radial-gradient(ellipse at bottom center, rgba(201, 168, 76, 0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* === MARQUEE: Hover lasst es kurz pausieren === */
.marquee:hover .marquee__track { animation-play-state: paused; }

/* === STAT NUMBER hover scale === */
.stat__number {
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.5s;
  display: inline-block;
}
.stat:hover .stat__number { transform: scale(1.08); color: var(--gold-light); }

/* === GOLD STAMP: Pulse-Glow === */
@keyframes stampGlow {
  0%, 100% { filter: drop-shadow(0 8px 30px rgba(201, 168, 76, 0.3)); }
  50%      { filter: drop-shadow(0 8px 50px rgba(201, 168, 76, 0.6)); }
}

.gold-stamp { animation: stampSpin 22s linear infinite, stampGlow 4s ease-in-out infinite; }

/* =============================================
   10K€ DESIGN — Tier
   ============================================= */

/* === IMAGE CURTAIN REVEAL (clip-path Wipe) === */
.img-reveal {
  position: relative;
  overflow: hidden;
}

.img-reveal::before,
.img-reveal::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
}

.img-reveal::after {
  background: var(--green-dark);
  transition-delay: 0.1s;
}

.img-reveal.is-revealed::before {
  animation: imgCurtain 1.5s cubic-bezier(0.7, 0, 0.2, 1) forwards;
}

.img-reveal.is-revealed::after {
  animation: imgCurtain 1.5s cubic-bezier(0.7, 0, 0.2, 1) 0.15s forwards;
}

@keyframes imgCurtain {
  0%   { transform-origin: left;  transform: scaleX(0); }
  50%  { transform-origin: left;  transform: scaleX(1); }
  51%  { transform-origin: right; transform: scaleX(1); }
  100% { transform-origin: right; transform: scaleX(0); }
}

.img-reveal img {
  opacity: 0;
  transition: opacity 0.4s ease 0.5s;
}

.img-reveal.is-revealed img { opacity: 1; }

/* === WORD-BY-WORD REVEAL === */
.word-reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.7em) rotate(2deg);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.word-reveal.is-revealed .word-reveal-word {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

/* === LIVE ALPINE PILL === */
.alpine-live {
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  padding: 1rem 1.25rem;
  background: rgba(13, 43, 26, 0.42);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--cream);
  font-family: var(--font-display);
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  opacity: 0;
  animation: alpineLiveIn 1.4s ease-out 2.4s forwards;
}

.alpine-live__row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.alpine-live__label {
  color: var(--gold-light);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  opacity: 0.85;
}

.alpine-live__value {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0;
  color: var(--white);
}

.alpine-live__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-accent);
  box-shadow: 0 0 8px var(--green-accent);
  animation: alpineDotPulse 2.4s ease-in-out infinite;
}

@keyframes alpineLiveIn {
  from { opacity: 0; transform: translateY(-50%) translateX(20px); }
  to   { opacity: 1; transform: translateY(-50%) translateX(0); }
}

@keyframes alpineDotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76, 175, 125, 0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(76, 175, 125, 0); }
}

@media (max-width: 900px) {
  .alpine-live { display: none; }
}

/* === FLOATING GOLD ORNAMENTS === */
.ornament {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: ornamentFloat var(--orn-dur, 14s) ease-in-out infinite, ornamentFade 1.5s ease-out forwards;
}

.ornament svg {
  width: 100%;
  height: 100%;
  fill: var(--gold);
  opacity: 0.35;
  filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.4));
}

@keyframes ornamentFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  33%      { transform: translateY(-20px) rotate(8deg); }
  66%      { transform: translateY(15px) rotate(-6deg); }
}

@keyframes ornamentFade {
  to { opacity: var(--orn-opacity, 0.6); }
}

/* === DROP CAP für ersten Absatz in About === */
.about__text .section__body:first-of-type::first-letter {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--gold);
  float: left;
  line-height: 0.85;
  padding: 0.2rem 0.6rem 0 0;
  text-shadow: 0 4px 30px rgba(201, 168, 76, 0.4);
}

/* === DEKORATIVER SCROLL-MARKER === */
.scroll-marker {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(13, 43, 26, 0.45);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s, transform 0.5s;
}

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

.scroll-marker__bar {
  position: relative;
  width: 24px;
  height: 1px;
  background: rgba(201, 168, 76, 0.3);
}

.scroll-marker__bar::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: var(--scroll-pct, 0%);
  height: 100%;
  background: var(--gold);
  transition: width 0.05s linear;
}

@media (max-width: 900px) { .scroll-marker { display: none; } }

/* === HERO ZOOM OUT START (cinematisch) === */
@keyframes heroZoomOut {
  0%   { transform: scale(1.35) translate3d(0, 0, 0); filter: brightness(0.7); }
  100% { transform: scale(1.08) translate3d(0, 0, 0); filter: brightness(1); }
}

.hero__media {
  animation:
    heroZoomOut 2.5s cubic-bezier(0.7, 0, 0.3, 1) forwards,
    heroKenBurns 38s ease-in-out infinite 2.5s !important;
}

/* === SECTION TITLE: Goldener Stern davor === */
.section__title--display::after {
  content: '✦';
  display: inline-block;
  margin-left: 0.5em;
  font-size: 0.35em;
  color: var(--gold);
  vertical-align: super;
  transform-origin: center;
  animation: starTwinkle 3s ease-in-out infinite;
  opacity: 0.7;
}

@keyframes starTwinkle {
  0%, 100% { opacity: 0.4; transform: scale(1) rotate(0); }
  50%      { opacity: 1;   transform: scale(1.3) rotate(180deg); }
}

/* === CINEMATISCHER IMAGE-HOVER === */
.about__photo, .interlude, .menu-aside__photo {
  position: relative;
}

.about__photo::after,
.menu-aside__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.12) 0%, transparent 30%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 3;
}

.about__photo:hover::after,
.menu-aside__photo:hover::after { opacity: 1; }

/* === GOLD PARTIKEL TRAIL beim Scroll === */
.scroll-particle {
  position: fixed;
  width: 2px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 0 4px var(--gold);
  animation: scrollParticleFade 1.2s ease-out forwards;
}

@keyframes scrollParticleFade {
  0%   { opacity: 0.8; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(var(--px, 0), var(--py, 30px)) scale(0); }
}

/* === MENU-BLOCK: Gold-Akzent rechts mit Animation === */
.menu-block--page {
  position: relative;
  isolation: isolate;
}

.menu-block--page::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  transition: height 0.8s ease;
  z-index: -1;
}

.menu-block--page:hover::before { height: 100%; }

/* === SCROLL-DRIVEN RGB SHIFT (background subtle) === */
body { transition: filter 0.6s ease; }

/* === STAGGERED DISH IMAGE LOADING SHIMMER === */
.dish img {
  position: relative;
}

.dish::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
  background-size: 200% 100%;
  background-position: 100% 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.dish:hover::before {
  opacity: 1;
  animation: dishShimmer 1.6s ease infinite;
}

@keyframes dishShimmer {
  to { background-position: -100% 0; }
}

/* === BORDER GLOW ANIMATION === */
@keyframes borderGlow {
  0%, 100% { border-color: rgba(201, 168, 76, 0.18); }
  50%      { border-color: rgba(201, 168, 76, 0.5); box-shadow: 0 0 30px rgba(201, 168, 76, 0.1); }
}

#speisen .menu-block--feature {
  animation: borderGlow 4s ease-in-out infinite;
}

/* === KINETIC TYPO: Menu prices counter-up effect (CSS only via animation) === */
.mi__price {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.3s;
}

.menu-block__items li:hover .mi__price {
  transform: scale(1.15);
  color: var(--gold);
}

/* === SOPHISTICATED SECTION DIVIDER === */
.section-divider {
  text-align: center;
  margin: 4rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gold);
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.section-divider__icon {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Gold-Partikel komplett deaktiviert */
.gold-particle { display: none !important; }

/* =============================================
   OVERHAUL: Topbar · Hours-Card · Section-Nav-Fix
   ============================================= */

/* --- TOP META BAR --- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  background: var(--green-dark);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.78);
}

.topbar__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.55rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.topbar__sep { color: var(--gold); opacity: 0.55; font-size: 0.6rem; }

/* Nav muss nach unten rutschen weil topbar darüber sitzt */
.nav { top: 36px !important; }
.nav.js-sticky { top: 0 !important; }

/* Topbar fade out beim Scroll, damit sticky Nav clean wird */
.nav.js-sticky ~ .topbar,
body.is-scrolled .topbar {
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

.topbar { transition: transform 0.4s ease; }

@media (max-width: 720px) {
  .topbar__inner { padding: 0.5rem 1rem; font-size: 0.6rem; letter-spacing: 0.2em; gap: 0.6rem; }
  .topbar__sep { display: none; }
  .nav { top: 32px !important; }
}

/* --- HOURS CARD (Editorial) --- */
.contact__item--hours { grid-column: 1 / -1; }

.contact__hours-title {
  display: block;
  font-family: var(--font-serif) !important;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.hours-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  margin-top: 0.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--green-dark);
  color: var(--cream);
  border-left: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.hours-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hours-card__season {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-right: 1.5rem;
  border-right: 1px solid rgba(201, 168, 76, 0.3);
  white-space: nowrap;
}

.hours-card__season-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.hours-card__season-value {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--white);
}

.hours-card__days {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-card__row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.25rem 0;
}

.hours-card__day {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  min-width: 80px;
}

.hours-card__time {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream);
}

.hours-card__row--closed .hours-card__time {
  color: rgba(245, 240, 232, 0.5);
  font-style: italic;
}

.contact__note {
  margin-top: 0.5rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text-mid);
  opacity: 0.85;
}

@media (max-width: 720px) {
  .hours-card { grid-template-columns: 1fr; gap: 1rem; }
  .hours-card__season { padding-right: 0; border-right: none; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(201, 168, 76, 0.3); }
}

/* --- SECTION-NAV: Überlappung mit Reserve-Button + Scroll-Marker fixen --- */
.section-nav {
  right: 1.25rem !important;
  top: 50% !important;
  z-index: 80 !important;
}

/* Falls "Tisch reservieren" Button noch da ist – Position nicht überlappen */
.back-to-top, [class*="reserv" i].btn--floating, .back-to-top.is-visible {
  z-index: 70 !important;
}

/* --- SCHRIFTART bei Section-Titles refined --- */
.section__title,
.section__title--display {
  font-family: 'Playfair Display', Georgia, serif !important;
  letter-spacing: -0.025em;
  font-feature-settings: "liga" 1, "kern" 1, "ss01" 1;
}

.section__title--display em {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-style: italic;
  font-weight: 400;
}

/* Sticky nav padding korrigieren wegen Topbar */
@media (min-width: 721px) {
  body { padding-top: 0; }
}

/* Scroll-Marker (unten links) Z-Index angepasst, falls Button rechts unten sitzt */
.scroll-marker { z-index: 75 !important; }


/* Floating Ornamente komplett deaktivieren */
.ornament,
.topbar__sep { display: none !important; }

/* Star nach Section-Titles auch weg */
.section__title--display::after { content: '' !important; display: none !important; }

/* =============================================
   TOPBAR REDESIGN – editorial Label/Value-Paare
   ============================================= */
.topbar {
  background: var(--green-dark) !important;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12) !important;
  color: rgba(245, 240, 232, 0.82) !important;
  font-family: var(--font-sans) !important;
}

.topbar__inner {
  padding: 0.5rem 2.5rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 3.5rem !important;
  flex-wrap: wrap !important;
}

.topbar__group {
  display: inline-flex !important;
  align-items: baseline !important;
  gap: 0.75rem !important;
  position: relative;
}

.topbar__group + .topbar__group::before {
  content: '';
  position: absolute;
  left: -1.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: rgba(201, 168, 76, 0.3);
}

.topbar__label {
  font-family: var(--font-display) !important;
  font-size: 0.6rem !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  opacity: 0.8;
}

.topbar__value {
  font-family: var(--font-serif) !important;
  font-style: italic !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.02em !important;
  color: rgba(245, 240, 232, 0.92) !important;
  text-transform: none !important;
}

@media (max-width: 760px) {
  .topbar__inner { gap: 1.25rem !important; padding: 0.5rem 1rem !important; }
  .topbar__group + .topbar__group::before { display: none; }
  .topbar__label { font-size: 0.55rem !important; }
  .topbar__value { font-size: 0.7rem !important; }
}

/* =============================================
   LOGO NEU – clean, zweizeilig, ohne italic Glyph-Marks
   ============================================= */
.nav__logo-text {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.15rem !important;
  line-height: 1 !important;
  font-style: normal !important;
}

.nav__logo-text::after { display: none !important; content: none !important; }

.nav__logo-primary {
  font-family: 'Bebas Neue', sans-serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 1.25rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
}

.nav__logo-secondary {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.05em !important;
  text-transform: none !important;
  opacity: 0.7;
  line-height: 1 !important;
}

/* Im Sticky-State Farben anpassen */
.nav.js-sticky .nav__logo-primary { color: var(--green-dark) !important; }
.nav.js-sticky .nav__logo-secondary { color: var(--gold-deep) !important; }

/* Default-State (über Hero) */
.nav:not(.js-sticky) .nav__logo-primary { color: var(--white) !important; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.nav:not(.js-sticky) .nav__logo-secondary { color: var(--gold-light) !important; }


/* === INTERLUDE VIDEO === */
.interlude--video { background: var(--green-dark); }

.interlude__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  z-index: 0;
}

.interlude--video .interlude__overlay {
  z-index: 1;
}

.interlude--video .interlude__caption {
  z-index: 2;
}

/* =============================================
   WANDERN-SEKTION + topografische Trail-Map
   ============================================= */

.wandern {
  --wandern-gold: #b78d3c;
  --wandern-gold-soft: #d6b46a;
  --wandern-green: #0b2417;
  --wandern-paper: #faf8f3;
  --wandern-ink-soft: rgba(11, 36, 23, 0.64);
  background: var(--wandern-paper) !important;
  color: var(--wandern-green) !important;
}

.wandern__intro {
  max-width: 880px;
  margin: 0 auto 4.5rem;
  text-align: center;
}

.wandern__intro .section__title,
.wandern__intro .section__body {
  margin-left: auto;
  margin-right: auto;
}

.wandern__map {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(0.55rem, 1.4vw, 1rem);
  position: relative;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.58), rgba(250,248,243,0.22)),
    var(--wandern-paper);
  border: 1px solid rgba(183, 141, 60, 0.26);
  box-shadow: 0 26px 72px rgba(11, 36, 23, 0.11);
}

.trail-map {
  width: 100%;
  max-height: min(58vh, 500px);
  height: auto;
  display: block;
  overflow: visible;
  color: var(--wandern-green);
  isolation: isolate;
}

.trail-map__paper {
  fill: #eef1ec;
}

.trail-map__viewport {
  fill: #f8f6ee;
  stroke: rgba(11, 36, 23, 0.08);
  stroke-width: 1;
}

.trail-map__grid path {
  fill: none;
  stroke: rgba(11, 36, 23, 0.035);
  stroke-width: 1;
}

.trail-map__contours path {
  fill: none;
  stroke: rgba(83, 112, 93, 0.24);
  stroke-width: 1;
  opacity: 0;
}

.trail-map__contours path:nth-child(even) {
  stroke: rgba(83, 112, 93, 0.17);
  stroke-dasharray: none;
}

.trail-map__shading path {
  fill: none;
  stroke: rgba(63, 112, 83, 0.16);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 1 9;
  opacity: 0;
}

.terrain {
  fill: rgba(102, 145, 105, 0.14);
  stroke: rgba(82, 122, 86, 0.14);
  stroke-width: 1;
}

.terrain--rotewand {
  fill: rgba(122, 148, 93, 0.16);
}

.terrain--madloch,
.terrain--auenfeld {
  fill: rgba(105, 145, 110, 0.14);
}

.trail-map__lakes .lake {
  fill: #d8eef2;
  stroke: #8bb4bd;
  stroke-width: 1.5;
}

.trail-map__lakes .lake--pond,
.trail-map__lakes .lake--formarin,
.trail-map__lakes .lake--spuller {
  fill: url(#lake-dots);
}

.trail-map__lakes .lake--pond {
  fill: url(#pond-hatch);
  stroke: #5f929a;
}

.trail-map__river {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.river-outline {
  stroke: #ffffff;
  stroke-width: 17;
}

.river-core {
  stroke: #7daeb8;
  stroke-width: 9;
}

.river-label,
.trail-map__distance-labels text {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 2px;
  fill: rgba(11, 36, 23, 0.58);
}

.river-label {
  opacity: 0;
  fill: rgba(67, 103, 107, 0.82);
}

.map-road {
  fill: none;
  stroke: rgba(128, 124, 111, 0.55);
  stroke-width: 2;
  stroke-dasharray: 7 7;
  stroke-linecap: round;
}

.map-road--main {
  stroke: #ffffff;
  stroke-width: 11;
  stroke-dasharray: none;
}

.map-road--main-road {
  stroke: #d9c49b;
  stroke-width: 6;
  stroke-dasharray: none;
}

.map-road--spur {
  stroke: #d9c49b;
  stroke-width: 5;
  stroke-dasharray: none;
}

.map-road--path {
  stroke: rgba(128, 124, 111, 0.45);
  stroke-width: 2;
  stroke-dasharray: 8 8;
}

.settlement-dot {
  fill: #ffffff;
  stroke: #7c765f;
  stroke-width: 2;
}

.trail-map__settlements text {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  fill: rgba(56, 73, 58, 0.78);
  paint-order: stroke;
  stroke: rgba(250, 248, 243, 0.72);
  stroke-width: 4;
  stroke-linejoin: round;
}

.trail-map__settlements text:nth-of-type(1),
.trail-map__settlements text:nth-of-type(2) {
  font-size: 17px;
  fill: rgba(35, 56, 41, 0.88);
}

.trail {
  stroke: #b78d3c;
  stroke-width: 5;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0;
  filter: drop-shadow(0 1px 0 rgba(250, 248, 243, 0.75));
  transition: opacity 220ms ease, stroke 220ms ease, stroke-width 220ms ease, filter 220ms ease;
}

.trail-case {
  stroke: rgba(255, 255, 255, 0.96);
  stroke-width: 11;
  opacity: 0;
}

.trail-map__distance-labels text {
  opacity: 0;
  paint-order: stroke;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 6;
  stroke-linejoin: round;
}

.trail-map__center {
  filter: drop-shadow(0 16px 22px rgba(11, 36, 23, 0.16));
}

.center-halo {
  fill: rgba(183, 141, 60, 0.12);
  stroke: rgba(183, 141, 60, 0.22);
}

.center-pin {
  fill: #1f5f3d;
  stroke: #ffffff;
  stroke-width: 3;
}

.center-pond {
  fill: url(#pond-hatch);
  stroke: rgba(250, 248, 243, 0.78);
  stroke-width: 1.4;
}

.center-fish,
.center-fish-tail {
  fill: var(--wandern-gold-soft);
}

.center-fish-eye {
  fill: var(--wandern-green);
}

.center-title,
.target-name,
.legend-title,
.trail-map__compass text,
.trail-map__scale text {
  font-family: var(--font-display);
  letter-spacing: 2.4px;
}

.center-title {
  font-size: 16px;
  fill: var(--wandern-green);
}

.center-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  fill: var(--wandern-ink-soft);
}

.target {
  color: var(--wandern-gold);
  cursor: default;
}

.target__dot,
.target__icon,
.target-label {
  opacity: 0;
}

.target__dot {
  fill: #1f5f3d;
  stroke: #ffffff;
  stroke-width: 3.5;
  transform-origin: center;
  transition: fill 220ms ease, r 220ms ease;
}

.target__icon {
  color: #1f5f3d;
  filter: drop-shadow(0 2px 0 #fff);
}

.target-label {
  transform-box: fill-box;
  transform-origin: center;
  transform: translate(var(--label-x, 0), var(--label-y, 0));
  transition: opacity 220ms ease, transform 220ms ease;
}

.target-label rect {
  fill: rgba(255, 255, 255, 0.96);
  stroke: rgba(52, 80, 59, 0.18);
  stroke-width: 1;
  filter: drop-shadow(0 6px 14px rgba(40, 54, 44, 0.14));
}

.target-kicker {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.9px;
  fill: #6b7c70;
}

.target-name {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.7px;
  fill: #263a2d;
}

.target-facts {
  font-family: var(--font-sans);
  font-size: 12px;
  font-style: normal;
  fill: rgba(38, 58, 45, 0.72);
}

.trail-map__legend rect {
  fill: rgba(250, 248, 243, 0.86);
  stroke: rgba(183, 141, 60, 0.28);
}

.trail-map__legend {
  color: var(--wandern-green);
}

.trail-map__legend text {
  font-family: var(--font-sans);
  font-size: 13px;
  fill: rgba(11, 36, 23, 0.72);
}

.trail-map__legend .legend-title {
  font-size: 13px;
  fill: var(--wandern-gold);
}

.legend-trail {
  stroke: var(--wandern-gold);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 5 5;
}

.legend-river {
  stroke: #78969a;
  stroke-width: 5;
  stroke-linecap: round;
}

.trail-map__compass circle {
  fill: rgba(250, 248, 243, 0.72);
  stroke: rgba(183, 141, 60, 0.42);
}

.trail-map__compass path {
  fill: var(--wandern-gold);
}

.trail-map__compass line,
.trail-map__scale line {
  stroke: rgba(11, 36, 23, 0.58);
  stroke-width: 1.3;
}

.trail-map__compass text,
.trail-map__scale text {
  font-size: 12px;
  fill: rgba(11, 36, 23, 0.64);
}

.wandern__note {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(11, 36, 23, 0.58);
}

.reveal.visible .trail-map__contours path,
.wandern__map.visible .trail-map__contours path {
  animation: contourFade 0.5s ease-out forwards;
}

.reveal.visible .trail-map__shading path,
.wandern__map.visible .trail-map__shading path {
  animation: contourFade 0.5s ease-out forwards 0.18s;
}

.reveal.visible .trail-map__river,
.wandern__map.visible .trail-map__river {
  animation: riverTrace 0.7s cubic-bezier(0.32, 0.75, 0.25, 1) forwards 0.5s;
}

.reveal.visible .river-label,
.wandern__map.visible .river-label {
  animation: mapFade 0.45s ease-out forwards 1s;
}

.reveal.visible .trail,
.wandern__map.visible .trail {
  animation: trailTrace 1s cubic-bezier(0.3, 0.72, 0.22, 1) forwards;
}

.reveal.visible .trail-case,
.wandern__map.visible .trail-case {
  animation: mapFade 0.35s ease-out forwards 1.12s;
}

.reveal.visible .trail--aelpele,
.wandern__map.visible .trail--aelpele { animation-delay: 1.2s; }
.reveal.visible .trail--formarin,
.wandern__map.visible .trail--formarin { animation-delay: 1.35s; }
.reveal.visible .trail--freiburger,
.wandern__map.visible .trail--freiburger { animation-delay: 1.5s; }
.reveal.visible .trail--spuller,
.wandern__map.visible .trail--spuller { animation-delay: 1.65s; }
.reveal.visible .trail--ravensburger,
.wandern__map.visible .trail--ravensburger { animation-delay: 1.8s; }
.reveal.visible .trail--stierloch,
.wandern__map.visible .trail--stierloch { animation-delay: 1.95s; }
.reveal.visible .trail--madloch,
.wandern__map.visible .trail--madloch { animation-delay: 2.1s; }
.reveal.visible .trail--auenfeld,
.wandern__map.visible .trail--auenfeld { animation-delay: 2.25s; }

.reveal.visible .trail-map__distance-labels text,
.wandern__map.visible .trail-map__distance-labels text {
  animation: mapFade 0.38s ease-out forwards 2.7s;
}

.reveal.visible .target__dot,
.reveal.visible .target__icon,
.reveal.visible .target-label,
.wandern__map.visible .target__dot,
.wandern__map.visible .target__icon,
.wandern__map.visible .target-label {
  animation: targetLabelIn 0.58s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.reveal.visible .target--aelpele .target__dot,
.reveal.visible .target--aelpele .target__icon,
.reveal.visible .target--aelpele .target-label,
.wandern__map.visible .target--aelpele .target__dot,
.wandern__map.visible .target--aelpele .target__icon,
.wandern__map.visible .target--aelpele .target-label { animation-delay: 2.35s; }

.reveal.visible .target--formarin .target__dot,
.reveal.visible .target--formarin .target__icon,
.reveal.visible .target--formarin .target-label,
.wandern__map.visible .target--formarin .target__dot,
.wandern__map.visible .target--formarin .target__icon,
.wandern__map.visible .target--formarin .target-label { animation-delay: 2.48s; }

.reveal.visible .target--freiburger .target__dot,
.reveal.visible .target--freiburger .target__icon,
.reveal.visible .target--freiburger .target-label,
.wandern__map.visible .target--freiburger .target__dot,
.wandern__map.visible .target--freiburger .target__icon,
.wandern__map.visible .target--freiburger .target-label { animation-delay: 2.61s; }

.reveal.visible .target--spuller .target__dot,
.reveal.visible .target--spuller .target__icon,
.reveal.visible .target--spuller .target-label,
.wandern__map.visible .target--spuller .target__dot,
.wandern__map.visible .target--spuller .target__icon,
.wandern__map.visible .target--spuller .target-label { animation-delay: 2.74s; }

.reveal.visible .target--ravensburger .target__dot,
.reveal.visible .target--ravensburger .target__icon,
.reveal.visible .target--ravensburger .target-label,
.wandern__map.visible .target--ravensburger .target__dot,
.wandern__map.visible .target--ravensburger .target__icon,
.wandern__map.visible .target--ravensburger .target-label { animation-delay: 2.87s; }

.reveal.visible .target--stierloch .target__dot,
.reveal.visible .target--stierloch .target__icon,
.reveal.visible .target--stierloch .target-label,
.wandern__map.visible .target--stierloch .target__dot,
.wandern__map.visible .target--stierloch .target__icon,
.wandern__map.visible .target--stierloch .target-label { animation-delay: 3s; }

.reveal.visible .target--madloch .target__dot,
.reveal.visible .target--madloch .target__icon,
.reveal.visible .target--madloch .target-label,
.wandern__map.visible .target--madloch .target__dot,
.wandern__map.visible .target--madloch .target__icon,
.wandern__map.visible .target--madloch .target-label { animation-delay: 3.13s; }

.reveal.visible .target--auenfeld .target__dot,
.reveal.visible .target--auenfeld .target__icon,
.reveal.visible .target--auenfeld .target-label,
.wandern__map.visible .target--auenfeld .target__dot,
.wandern__map.visible .target--auenfeld .target__icon,
.wandern__map.visible .target--auenfeld .target-label { animation-delay: 3.26s; }

.trail-map:has(.target:hover) .trail {
  opacity: 0.3;
  stroke: rgba(183, 141, 60, 0.52);
  filter: none;
}

.trail-map:has(.target--aelpele:hover) .trail--aelpele,
.trail-map:has(.target--formarin:hover) .trail--formarin,
.trail-map:has(.target--freiburger:hover) .trail--freiburger,
.trail-map:has(.target--spuller:hover) .trail--spuller,
.trail-map:has(.target--ravensburger:hover) .trail--ravensburger,
.trail-map:has(.target--stierloch:hover) .trail--stierloch,
.trail-map:has(.target--madloch:hover) .trail--madloch,
.trail-map:has(.target--auenfeld:hover) .trail--auenfeld {
  opacity: 1;
  stroke: #d7a744;
  stroke-width: 5.2;
  stroke-dasharray: 1 !important;
  filter: drop-shadow(0 0 8px rgba(183, 141, 60, 0.38));
}

.target:hover .target__dot {
  fill: #d7a744;
  r: 8;
}

.target:hover .target-label rect {
  stroke: rgba(183, 141, 60, 0.78);
}

@keyframes contourFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes riverTrace {
  from { stroke-dashoffset: 1; }
  to { stroke-dashoffset: 0; }
}

@keyframes trailTrace {
  0% {
    opacity: 0;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
  }
  15% {
    opacity: 1;
  }
  88% {
    stroke-dasharray: 1;
    stroke-dashoffset: 0;
  }
  100% {
    opacity: 1;
    stroke-dasharray: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes targetLabelIn {
  from {
    opacity: 0;
    transform: translate(var(--label-x, 0), var(--label-y, 0));
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes mapFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 900px) {
  .wandern__intro {
    margin-bottom: 3rem;
  }

  .wandern__map {
    padding: 0.65rem;
  }

  .trail-map {
    min-width: 680px;
    max-height: 480px;
  }

  .wandern__map {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 600px) {
  .wandern__map {
    margin-left: -1rem;
    margin-right: -1rem;
    border-left: 0;
    border-right: 0;
  }

  .wandern__note {
    padding: 0 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trail-map__contours path,
  .trail-map__shading path,
  .trail-map__river,
  .river-label,
  .trail,
  .trail-map__distance-labels text,
  .target__dot,
  .target__icon,
  .target-label {
    animation: none !important;
    opacity: 1 !important;
    stroke-dashoffset: 0 !important;
  }

  .trail {
    stroke-dasharray: 0.035 0.026;
  }

  .target-label {
    transform: translate(0, 0) !important;
  }
}

/* =============================================
   WANDERN MAP — Mobile, Touch & Print
   ============================================= */

/* === Touch: fokussierter Trail bei Tap === */
@media (hover: none) and (pointer: coarse) {
  /* Auf Touch-Geräten alle Trails immer in voller Sichtbarkeit halten */
  .trail-map .target,
  .trail-map .trail,
  .trail-map .trail-case,
  .trail-map .distance-label { opacity: 1 !important; }
}

/* Klassenbasiertes Highlight (für Touch-Aktivierung via JS) */
.trail-map.has-focus .trail:not(.is-focused),
.trail-map.has-focus .trail-case:not(.is-focused),
.trail-map.has-focus .target:not(.is-focused),
.trail-map.has-focus .distance-label:not(.is-focused) {
  opacity: 0.25;
  transition: opacity 0.3s ease;
}

.trail-map.has-focus .trail.is-focused,
.trail-map.has-focus .trail-case.is-focused {
  opacity: 1;
  stroke: var(--gold-light, #d4b06a);
  filter: drop-shadow(0 0 6px rgba(212, 176, 106, 0.5));
}

.trail-map.has-focus .target.is-focused {
  opacity: 1;
  transform-origin: center;
  animation: targetFocusBounce 0.5s ease-out;
}

@keyframes targetFocusBounce {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.15); }
  100% { transform: scale(1.05); }
}

/* === Mobile: Karte größer skaliert + Container scrollbar === */
@media (max-width: 900px) {
  .wandern__map {
    padding: 0.75rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .trail-map {
    min-width: 760px;
  }

  .wandern__intro {
    margin-bottom: 2.5rem;
  }

  /* Hinweis-Text drüber: "seitlich scrollen" */
  .wandern__map::before {
    content: '↔ Seitlich scrollen für die ganze Karte';
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(13, 26, 20, 0.5);
    text-align: center;
    margin-bottom: 0.75rem;
  }
}

@media (max-width: 600px) {
  .trail-map text { font-size: 13px; }
  .wandern__note { font-size: 0.75rem; line-height: 1.5; }
}

/* === Print: clean A4-tauglich, keine Animationen === */
@media print {
  .topbar, .nav, .section-nav, .scroll-progress,
  .hero, .marquee, .pullquote, .interlude,
  .footer, .skip-link { display: none !important; }

  body, .wandern {
    background: #fff !important;
    color: #000 !important;
  }

  .wandern {
    padding: 1cm 0 !important;
  }

  .wandern__intro {
    margin-bottom: 0.5cm !important;
  }

  .wandern__intro .section__title {
    font-size: 24pt !important;
    color: #000 !important;
  }

  .wandern__intro .section__body {
    font-size: 10pt !important;
    color: #333 !important;
  }

  .wandern__map {
    background: #fff !important;
    border: 1px solid #888 !important;
    padding: 0.5cm !important;
    page-break-inside: avoid;
  }

  .trail-map { max-width: 100% !important; height: auto !important; }

  /* Alle Animationen stoppen, alles sichtbar */
  .trail-map .trail,
  .trail-map .trail-case,
  .trail-map .target,
  .trail-map .spark,
  .trail-map .distance-label {
    opacity: 1 !important;
    stroke-dashoffset: 0 !important;
    animation: none !important;
  }

  /* Trails in schwarz weil Gold auf Papier schlecht druckt */
  .trail-map .trail { stroke: #1a1a1a !important; }
  .trail-map .trail-case { stroke: #aaa !important; }

  .wandern__note {
    font-size: 8pt !important;
    color: #555 !important;
    margin-top: 0.3cm;
  }
}

/* =============================================
   FEEDBACK PDF — Final Fixes
   ============================================= */

/* === GALERIE Section === */
.galerie__intro {
  max-width: 700px;
  margin: 0 auto 5rem;
  text-align: center;
}

.galerie__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.galerie__item {
  position: relative;
  overflow: hidden;
  background: rgba(11, 36, 23, 0.4);
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.galerie__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s ease;
  filter: saturate(1.05);
}

.galerie__item:hover { transform: translateY(-4px); }
.galerie__item:hover img { transform: scale(1.06); filter: saturate(1.15); }

.galerie__item--tall { grid-row: span 2; }
.galerie__item--wide { grid-column: span 2; }

@media (max-width: 900px) {
  .galerie__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .galerie__item--tall { grid-row: span 2; }
  .galerie__item--wide { grid-column: span 2; }
}
@media (max-width: 520px) {
  .galerie__grid { grid-template-columns: 1fr; }
  .galerie__item, .galerie__item--tall, .galerie__item--wide {
    grid-row: auto; grid-column: auto;
  }
}

/* === Öffnungszeiten Stat – mit prominenter Überschrift === */
.stat--hours {
  display: flex !important;
  flex-direction: column;
  gap: 0.35rem;
}

.stat--hours .stat__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.stat--hours .stat__primary {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream, #f5f0e8);
  line-height: 1.2;
  white-space: nowrap;
}

.stat--hours .stat__season {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(245, 240, 232, 0.7);
  text-transform: none;
}

/* === MARQUEE: nicht mehr mit Hero überschneiden === */
.marquee {
  position: relative;
  z-index: 5;
  margin-top: 0;
  transform: none !important;
}
.hero { overflow: hidden; }

/* === TOPBAR Koordinaten: clean sans-serif statt italic Serif === */
.topbar__value {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-style: normal !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  font-size: 0.74rem !important;
}

.topbar__label {
  font-family: 'Bebas Neue', sans-serif !important;
  font-style: normal !important;
}

/* === Tischreservierung-Hinweis: sans-serif statt italic === */
.contact__note {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-style: normal !important;
  font-size: 0.88rem !important;
  color: rgba(13, 26, 20, 0.62) !important;
  margin-top: 0.6rem !important;
  letter-spacing: 0.01em !important;
}
.contact__note em {
  font-style: normal !important;
  font-family: 'Inter', system-ui, sans-serif !important;
}

/* === Google Maps: Iframe sauber zentriert + größer === */
.contact__map {
  width: 100%;
  max-width: 100%;
  margin: 2rem auto 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(11, 36, 23, 0.15);
  border: none;
}

.contact__map iframe {
  display: block;
  width: 100% !important;
  height: 420px !important;
  border: 0;
  filter: saturate(1.05);
}

/* === SERVICE CARDS: prominentere Bilder + cleanere Optik === */
.service-card {
  position: relative;
  overflow: hidden;
  padding: 0 !important;
  background: var(--paper, #f7f3ec) !important;
  border: 1px solid rgba(11, 36, 23, 0.08) !important;
  transition: transform 0.5s ease, box-shadow 0.5s ease !important;
}

.service-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 24px 50px rgba(11, 36, 23, 0.15) !important;
  background: var(--paper, #f7f3ec) !important;
}

.service-card__icon {
  display: block !important;
  width: 100% !important;
  height: 220px !important;
  margin: 0 0 1.5rem 0 !important;
  border-radius: 0 !important;
  overflow: hidden;
  background: rgba(11, 36, 23, 0.05);
}

.service-card__icon img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 0 !important;
  border: none !important;
  object-fit: cover !important;
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card:hover .service-card__icon img {
  transform: scale(1.06);
}

.service-card h3 {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-style: italic !important;
  font-size: 1.5rem !important;
  margin: 0 1.75rem 0.75rem !important;
  color: var(--green-dark, #0b2417) !important;
}

.service-card p {
  margin: 0 1.75rem 1.75rem !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  color: rgba(11, 36, 23, 0.72) !important;
}

@media (max-width: 768px) {
  .service-card__icon { height: 180px !important; }
}

/* === Impressum / Datenschutz: Headings sans-serif === */
.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-page h1,
.legal-page h2,
.legal-page h3,
body.legal h1, body.legal h2, body.legal h3 {
  font-family: 'Bebas Neue', sans-serif !important;
  font-style: normal !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
  color: var(--green-dark, #0b2417) !important;
}

.legal-content h1, .legal-page h1, body.legal h1 { font-size: 1.8rem !important; }
.legal-content h2, .legal-page h2, body.legal h2 { font-size: 1.2rem !important; margin-top: 2.5rem !important; }
.legal-content h3, .legal-page h3, body.legal h3 { font-size: 0.95rem !important; margin-top: 1.5rem !important; }

/* Kontakt-Sektion: Map vertikal mittig zum Text links === */
.contact__grid {
  align-items: center !important;
}

.contact__map {
  margin-top: 0 !important;
  align-self: center !important;
}

/* === HERO RESPONSIVE FIX – Overflow / Überschneidung bei kleinen Fenstern === */

.hero {
  min-height: 600px !important;
  height: 100svh; /* small viewport height – ohne Browser-UI */
  height: 100vh;
  max-height: 100vh;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(5rem, 12vh, 8rem) clamp(1rem, 3vw, 2rem) clamp(3rem, 8vh, 5rem) !important;
  overflow: hidden;
  box-sizing: border-box;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 920px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2.5vh, 2rem);
}

.hero__title {
  font-size: clamp(2.5rem, 8vw, 6.5rem) !important;
  line-height: 1.05 !important;
  margin: 0 !important;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.2rem) !important;
  line-height: 1.55 !important;
  margin: 0 !important;
  max-width: 640px;
}

.hero__cta {
  margin: 0 !important;
  flex-wrap: wrap;
  justify-content: center;
}

/* Scroll-Indicator nur bei genug Platz, sonst dezent */
.hero__scroll-indicator {
  margin-top: clamp(0.5rem, 2vh, 2rem);
  position: relative !important;
  left: auto !important;
  bottom: auto !important;
  transform: none !important;
}

@media (max-height: 700px) {
  .hero__scroll-indicator { display: none !important; }
  .hero__subtitle { display: none; }
}

@media (max-height: 560px) {
  .hero__cta .btn { padding: 0.7rem 1.4rem !important; font-size: 0.75rem !important; }
}

@media (max-width: 640px) {
  .hero__cta { gap: 0.65rem !important; }
  .hero__cta .btn { flex: 0 1 auto; }
}

/* Marquee danach klar getrennt halten */
.marquee {
  position: relative !important;
  z-index: 3;
  margin-top: 0 !important;
}

/* Öffnungszeiten-Heading: gleiche Optik wie die anderen Stat-Labels */
.stat--hours .stat__heading {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.3em !important;
  text-transform: uppercase !important;
  color: rgba(247, 243, 235, 0.55) !important;
  margin-bottom: 0.6rem !important;
  order: 2;
}

.stat--hours { display: flex; flex-direction: column; }
.stat--hours .stat__primary { order: 1; }
.stat--hours .stat__season { order: 3; }

/* Di–So Zeile soll wie die anderen Stat-Zahlen aussehen (gold, Playfair, bold) */
.stat--hours .stat__primary {
  font-family: var(--font-serif) !important;
  font-style: normal !important;
  font-size: 1.55rem !important;
  font-weight: 900 !important;
  color: var(--gold) !important;
  line-height: 1.05 !important;
  margin-bottom: 0.5rem !important;
  letter-spacing: -0.01em !important;
}

.stat--hours .stat__season {
  font-size: 0.72rem !important;
  letter-spacing: 0.06em !important;
  opacity: 0.55;
}

/* Öffnungszeiten-Label wieder OBEN über der Di-So Zeile */
.stat--hours .stat__heading { order: 1 !important; margin-bottom: 0.5rem !important; margin-top: 0 !important; }
.stat--hours .stat__primary { order: 2 !important; }
.stat--hours .stat__season  { order: 3 !important; margin-top: 0.35rem !important; }

/* ============================================
   RESPONSIVE-FIXES: Text-Overflow vermeiden
   ============================================ */

/* Öffnungszeiten Primary: skaliert mit Spaltenbreite, kann umbrechen */
.stat--hours .stat__primary {
  font-size: clamp(0.95rem, 1.45vw, 1.55rem) !important;
  white-space: normal !important;
  line-height: 1.2 !important;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/* Stat-Zahlen: skaliert mit Spaltenbreite */
.stat__number {
  font-size: clamp(1.8rem, 3.2vw, 3rem) !important;
}
.stat__number small { font-size: clamp(1rem, 1.7vw, 1.5rem) !important; }

/* Stats-Grid: bei schmaleren Fenstern responsiver */
@media (max-width: 1100px) {
  .about__stats { grid-template-columns: repeat(2, 1fr) !important; gap: 1.5rem 2rem !important; }
}
@media (max-width: 540px) {
  .about__stats { grid-template-columns: 1fr !important; gap: 1.25rem !important; }
}

/* Section-Titles: kein horizontaler Overflow */
.section__title, .section__title--display, .hero__title, .menu-hero__title {
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Menu Block Titles: bei schmal nicht überlappen */
.menu-block__title {
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* Topbar items: bei zu wenig Platz wrappen */
.topbar__inner { flex-wrap: wrap !important; row-gap: 0.4rem !important; }

/* Navigation Links: bei knappem Platz kleiner machen statt überlappen */
@media (max-width: 1100px) {
  .nav__links { gap: 1.5rem !important; }
  .nav__links a { font-size: 0.8rem !important; letter-spacing: 0.22em !important; }
}

/* Contact Grid: bei mittleren Breiten von 2 Spalten zu 1 wechseln */
@media (max-width: 880px) {
  .contact__grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
}

/* Service Cards: Texte nicht über die Karte hinaus */
.service-card h3, .service-card p {
  overflow-wrap: break-word;
}

/* Dishes-Grid: bei schmal weniger Spalten */
@media (max-width: 900px) {
  .dishes { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 500px) {
  .dishes { grid-template-columns: 1fr !important; }
}

/* Pullquote: kein Overflow bei sehr schmal */
.pullquote__text {
  overflow-wrap: break-word;
  hyphens: auto;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

/* Allgemeine Sicherheit gegen horizontalen Scroll */
html, body { overflow-x: hidden; max-width: 100%; } /* 100% statt 100vw: 100vw enthaelt unter Windows die Scrollleiste */

/* Footer Links: bei eng wrappen */
.footer__links {
  flex-wrap: wrap !important;
  row-gap: 0.5rem !important;
}

/* Hero CTA: bei sehr eng untereinander */
@media (max-width: 480px) {
  .hero__cta { flex-direction: column !important; width: 100%; max-width: 320px; }
  .hero__cta .btn { width: 100%; justify-content: center; }
}

/* Speisekarten-Block-Titel: alle Teile in vollem Cream-Weiß */
.menu-block__title,
.menu-block__title span,
#speisen .menu-block__title,
#speisen .menu-block__title span,
.speisekarte .menu-block__title,
.speisekarte .menu-block__title span {
  color: var(--cream, #f5f0e8) !important;
  opacity: 1 !important;
}

/* Hero-Inhalte: nicht selektierbar (auch nicht versteckte/sichtbare Texte) */
.hero, .hero * {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  user-select: none !important;
}

/* Buttons im Hero bleiben klickbar */
.hero a, .hero button { pointer-events: auto; }

/* ============================================
   MOBILE BROWSER FIXES — handy-tauglich
   ============================================ */

/* Body-Padding für fixe Topbar+Nav damit Inhalt nicht drunter rutscht */
@media (max-width: 720px) {
  body { padding-top: 0; }
  
  /* Topbar mobile: kompakter */
  .topbar { font-size: 0.62rem !important; }
  .topbar__inner {
    padding: 0.4rem 0.75rem !important;
    gap: 0.6rem !important;
    flex-wrap: wrap;
  }
  .topbar__group { gap: 0.4rem !important; }
  .topbar__group + .topbar__group::before { display: none !important; }
  .topbar__label { font-size: 0.55rem !important; letter-spacing: 0.18em !important; }
  .topbar__value { font-size: 0.65rem !important; }
  
  /* Nav mobile: kompakt, kleine Bebas */
  .nav { padding: 0.85rem 1rem !important; top: 32px !important; }
  .nav.js-sticky { padding: 0.7rem 1rem !important; top: 0 !important; }
  .nav__inner { gap: 0.75rem !important; grid-template-columns: 1fr auto !important; }
  .nav__logo-primary { font-size: 0.85rem !important; letter-spacing: 0.12em !important; }
  .nav__logo-secondary { font-size: 0.6rem !important; }
  .nav__logo-icon { width: 26px !important; }
  
  /* Menü-Links auf Mobile verstecken — Hamburger übernimmt */
  .nav__links { display: none !important; }
  .nav__hamburger { display: flex !important; }
  
  /* Mobile-Menü wenn offen */
  .nav.menu-open .nav__links,
  .nav.js-menu-open .nav__links {
    display: flex !important;
    position: fixed !important;
    inset: calc(32px + 56px) 0.75rem auto 0.75rem !important;
    flex-direction: column !important;
    background: rgba(247, 243, 235, 0.97) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    backdrop-filter: blur(18px) !important;
    padding: 1.25rem !important;
    gap: 0.5rem !important;
    border: 1px solid rgba(11, 36, 23, 0.1);
    box-shadow: 0 20px 50px rgba(11, 36, 23, 0.18);
    z-index: 999;
  }
  .nav.menu-open .nav__links a,
  .nav.js-menu-open .nav__links a {
    padding: 0.75rem !important;
    color: var(--ink, #1a1c19) !important;
    text-align: center;
    font-size: 0.85rem !important;
  }
  
  /* Hero mobile: kleinere Typo, mehr Padding-Top wegen Topbar+Nav */
  .hero {
    padding-top: clamp(7rem, 22vh, 10rem) !important;
    min-height: 90vh !important;
    min-height: 90svh !important;
  }
  .hero__title { font-size: clamp(2.2rem, 11vw, 4rem) !important; }
  .hero__subtitle { font-size: 0.92rem !important; line-height: 1.5 !important; padding: 0 0.5rem; }
  .hero__side-label { display: none !important; }
  .hero__cta { gap: 0.6rem !important; }
  .hero__cta .btn { padding: 0.75rem 1.2rem !important; font-size: 0.72rem !important; letter-spacing: 0.18em !important; }
  
  /* Sections allgemein: weniger vertical padding */
  .section { padding: 4rem 0 !important; }
  .container { padding: 0 1.25rem !important; }
  
  /* Section-Titles: lesbar auf Mobile */
  .section__title, .section__title--display {
    font-size: clamp(2rem, 7.5vw, 3rem) !important;
    line-height: 1.05 !important;
  }
  
  /* About */
  .about__grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .about__photo { height: 50vh !important; max-height: 380px; }
  .about__stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem !important;
    margin-top: 2.5rem !important;
    padding-top: 2rem !important;
  }
  .stat__number { font-size: 2.2rem !important; }
  .stat--hours .stat__primary { font-size: 1.05rem !important; }
  
  /* Section-Numbers auf Mobile aus. Gold-Stamp bleibt am Bild kleben
     (Positionierung weiter unten unter "ABOUT GOLD-STAMP RESPONSIVE FINAL"). */

  /* Services */
  .services__grid { grid-template-columns: 1fr !important; }
  .service-card { padding: 0 !important; }
  .service-card__icon { height: 200px !important; }
  .service-card h3 { font-size: 1.3rem !important; margin: 1.25rem 1.25rem 0.5rem !important; }
  .service-card p { font-size: 0.88rem !important; margin: 0 1.25rem 1.5rem !important; }
  
  /* Pullquote */
  .pullquote { padding: 5rem 0 !important; min-height: auto !important; }
  .pullquote__text { font-size: clamp(1.2rem, 4.5vw, 1.6rem) !important; padding: 0 1rem !important; }
  
  /* Speisen / Speisekarte */
  .dishes { grid-template-columns: 1fr !important; gap: 1rem !important; }
  .speisekarte__container--inline { margin-top: 2rem !important; gap: 2.5rem !important; }
  .menu-block__title { font-size: 1.5rem !important; }
  .menu-block__items li {
    grid-template-columns: 1fr auto !important;
    gap: 0.4rem !important;
    padding: 0.6rem 0 !important;
  }
  .mi__dots { display: none !important; }
  .mi__name { font-size: 0.95rem !important; }
  .mi__name small { font-size: 0.75rem !important; }
  .mi__price { font-size: 0.95rem !important; }
  
  /* Wandern Map: horizontal scrollbar mit Hinweis */
  .wandern__intro { margin-bottom: 2rem !important; }
  .wandern__intro .section__body { font-size: 0.9rem !important; }
  .wandern__map {
    padding: 0.75rem !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .trail-map { min-width: 720px; }
  
  /* Interlude */
  .interlude { height: 50vh !important; min-height: 320px !important; }
  .interlude__line { font-size: clamp(1.2rem, 4.5vw, 1.8rem) !important; padding: 0 1.25rem !important; }
  
  /* Contact */
  .contact__grid { grid-template-columns: 1fr !important; gap: 2rem !important; align-items: stretch !important; }
  .contact__map iframe { height: 320px !important; }
  .map-consent-placeholder { height: 320px !important; padding: 1.25rem !important; }
  .map-consent-placeholder__text { font-size: 0.85rem !important; }
  
  /* Footer */
  .footer { padding: 2rem 0 1.5rem !important; }
  .footer__inner { flex-direction: column !important; gap: 1rem !important; text-align: center; }
  .footer__links { justify-content: center !important; }
  .footer__copy { font-size: 0.75rem !important; }
  
  /* Cookie-Banner */
  .cookie-banner {
    left: 0.75rem !important;
    right: 0.75rem !important;
    bottom: 0.75rem !important;
    padding: 1rem 1.1rem !important;
    font-size: 0.82rem !important;
  }
  .cookie-banner__btn { width: 100% !important; padding: 0.75rem 1rem !important; font-size: 0.72rem !important; }
  
  /* Section-Nav-Dots auf Mobile aus (zu klein zu treffen) */
  .section-nav { display: none !important; }
  
  /* Scroll-Indicator weg auf Mobile (überladen) */
  .hero__scroll-indicator { display: none !important; }
}

/* Sehr kleine Phones (< 380px breit) */
@media (max-width: 380px) {
  .hero__title { font-size: 2rem !important; line-height: 1.05 !important; }
  .hero__cta { flex-direction: column !important; width: 100%; }
  .hero__cta .btn { width: 100% !important; }
  .about__stats { grid-template-columns: 1fr !important; }
  .stat { text-align: center !important; }
  .stat__number { font-size: 1.8rem !important; }
}

/* iOS Safari: 100vh-Hack damit Hero nicht hinter Adressleiste verschwindet */
@supports (-webkit-touch-callout: none) {
  .hero { min-height: -webkit-fill-available !important; }
}

/* Touch-Geräte: keine Hover-Effekte die hängenbleiben */
@media (hover: none) {
  .service-card:hover { transform: none !important; }
  .dish:hover img { transform: none !important; }
  .galerie__item:hover { transform: none !important; }
}

/* === MOBILE & TOUCH QA FIXES === */
html {
  scroll-padding-top: 104px;
  overflow-x: clip;
  /* Verhindert das elastische "Gummiband"-Wackeln am Seitenende (iOS Safari)
     und Scroll-Chaining in übergeordnete Container. */
  overscroll-behavior-y: none;
}

body {
  overflow-x: clip;
  width: 100%;
  overscroll-behavior-y: none;
}

@supports not (overflow: clip) {
  html,
  body { overflow-x: hidden; }
}

.hero,
.menu-hero,
.marquee {
  overflow: hidden;
}

.skip-link,
.btn,
.nav__logo,
.nav__links a,
.nav__hamburger,
.js-nav-toggle,
.cookie-banner__btn,
.map-consent-placeholder__btn,
.footer__links a,
a[href^="tel:"],
a[href^="mailto:"] {
  min-height: 44px;
}

.skip-link,
.btn,
.nav__logo,
.nav__links a,
.footer__links a,
a[href^="tel:"],
a[href^="mailto:"] {
  display: inline-flex;
  align-items: center;
}

.nav__links a,
.footer__links a {
  min-width: 44px;
  justify-content: center;
}

.nav__hamburger,
.js-nav-toggle {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  padding: 10px !important;
  align-items: center !important;
  justify-content: center !important;
  touch-action: manipulation;
}

.nav__hamburger span,
.js-nav-toggle span {
  pointer-events: none;
}

.cookie-banner {
  max-height: min(72vh, calc(100svh - 2rem));
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-bottom: max(1rem, env(safe-area-inset-bottom)) !important;
}

.cookie-banner__btn,
.map-consent-placeholder__btn {
  min-height: 44px !important;
  touch-action: manipulation;
}

.map-consent-placeholder__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wandern__map {
  touch-action: pan-y;
  overscroll-behavior-x: contain;
}

.trail-map .target {
  touch-action: manipulation;
  cursor: pointer;
}

.menu-block__items li {
  grid-template-columns: minmax(0, 1fr) max-content;
}

.mi__name {
  min-width: 0;
  overflow-wrap: anywhere;
}

.mi__price {
  white-space: nowrap;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav,
  .nav.js-sticky,
  .nav.menu-open .nav__links,
  .nav.js-menu-open .nav__links,
  .cookie-banner {
    background: rgba(247, 243, 235, 0.98) !important;
  }

  .cookie-banner {
    background: #0b2417 !important;
  }
}

@media (max-width: 1024px) {
  html { scroll-padding-top: 92px; }

  .nav__links a {
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .section-nav {
    display: none !important;
  }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 88px; }

  .hero {
    min-height: 100vh !important;
    min-height: 100svh !important;
  }

  .hero__title {
    max-width: 100%;
    overflow-wrap: normal;
  }

  .hero__cta .btn {
    min-height: 44px !important;
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
  }

  .nav.menu-open .nav__links,
  .nav.js-menu-open .nav__links {
    max-height: calc(100svh - 6rem);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .cookie-banner {
    left: max(0.75rem, env(safe-area-inset-left)) !important;
    right: max(0.75rem, env(safe-area-inset-right)) !important;
    bottom: max(0.75rem, env(safe-area-inset-bottom)) !important;
  }

  .cookie-banner__actions {
    gap: 0.65rem;
  }
}

@supports (-webkit-touch-callout: none) {
  .hero {
    min-height: -webkit-fill-available !important;
  }
}

@media (hover: none), (pointer: coarse) {
  .service-card:hover,
  .service-card:active,
  .dish:hover,
  .dish:active {
    transform: none !important;
  }

  .service-card:hover .service-card__icon img,
  .service-card:active .service-card__icon img,
  .dish:hover img,
  .dish:active img {
    transform: none !important;
  }
}

.map-consent-placeholder__link,
.legal-content a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  overflow-wrap: anywhere;
}

.legal-main,
.legal-content,
.legal-content section {
  min-width: 0;
  overflow-wrap: anywhere;
}

.page-curtain {
  overflow: hidden;
}

.page-curtain__brand {
  max-width: 100%;
  overflow-wrap: anywhere;
}

@media (max-width: 1024px) {
  .menu-block__items li {
    grid-template-columns: minmax(0, 1fr) max-content !important;
  }

  .mi__dots {
    display: none !important;
  }

  .legal-content h1 {
    font-size: clamp(2.1rem, 14vw, 4rem) !important;
    line-height: 0.98 !important;
    overflow-wrap: anywhere;
  }

  .legal-content h2 {
    font-size: clamp(1.25rem, 6.5vw, 2rem) !important;
    overflow-wrap: anywhere;
  }
}

/* Hero-Inhalte sofort sichtbar (kein Warten auf Scroll-Observer) */
.hero .reveal,
.hero__subtitle,
.hero__title,
.hero__cta,
.hero__eyebrow {
  opacity: 1 !important;
  transform: none !important;
}

/* Hero Word-Reveal-Wörter sofort sichtbar */
.hero .word-reveal-word,
.hero__subtitle .word-reveal-word {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Subtitle auch bei niedrigen Fenstern sichtbar lassen */
@media (max-height: 700px) {
  .hero__subtitle { display: block !important; font-size: 0.85rem !important; line-height: 1.4 !important; }
}

/* Menu Items: Preise wieder rechts, Name links — auch auf allen Breiten */
.menu-block__items li,
.speisekarte .menu-block__items li,
#speisen .menu-block__items li {
  display: grid !important;
  grid-template-columns: 1fr auto auto !important;
  align-items: baseline !important;
  gap: 0.75rem !important;
  column-gap: 1rem !important;
}

.menu-block__items .mi__name {
  grid-column: 1 !important;
}

.menu-block__items .mi__dots {
  display: block !important;
  grid-column: 2 !important;
  align-self: end !important;
  border-bottom: 1px dotted rgba(247, 240, 232, 0.25);
  height: 1px;
  min-width: 30px;
  margin-bottom: 0.5rem;
}

.menu-block__items .mi__price {
  grid-column: 3 !important;
  justify-self: end !important;
  white-space: nowrap !important;
  text-align: right !important;
}

/* Bei sehr schmal (Mobile < 480px) → 2-Spalten ohne Punkte */
@media (max-width: 480px) {
  .menu-block__items li {
    grid-template-columns: 1fr auto !important;
    column-gap: 0.75rem !important;
  }
  .menu-block__items .mi__dots { display: none !important; }
  .menu-block__items .mi__price { grid-column: 2 !important; }
}

/* Gepunktete Leitlinie komplett weg — cleaner Look */
.menu-block__items .mi__dots,
.menu-block__items li .mi__dots {
  display: none !important;
}

.menu-block__items li,
.speisekarte .menu-block__items li,
#speisen .menu-block__items li {
  grid-template-columns: 1fr auto !important;
}

.menu-block__items .mi__price {
  grid-column: 2 !important;
}

/* === MOBILE TOUCH FIXES (final) === */
@media (max-width: 1024px) {
  .nav__hamburger,
  .nav__links a,
  .cookie-banner__btn,
  .map-consent-placeholder__btn,
  .footer__links a,
  a[href^="tel:"],
  a[href^="mailto:"] {
    min-width: 44px;
    min-height: 44px;
  }

  .menu-block__items li,
  .speisekarte .menu-block__items li,
  #speisen .menu-block__items li {
    grid-template-columns: minmax(0, 1fr) max-content !important;
  }

  .mi__dots { display: none !important; }
  .mi__name { min-width: 0; overflow-wrap: anywhere; }
  .mi__price { white-space: nowrap; }
  .legal-content h1,
  .legal-content h2,
  .legal-content p,
  .legal-content a { overflow-wrap: anywhere; }
  .wandern__map { touch-action: pan-y; overscroll-behavior-x: contain; }
}

/* ============================================
   MOBILE FIXES — Final (Service-Cards, doppelter Hamburger, Map)
   ============================================ */

@media (max-width: 900px) {
  /* === SERVICE CARDS: 1 Spalte, Bild voll oben, Text drunter === */
  #services .services__grid,
  .services__grid {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
    border: none !important;
  }
  .service-card,
  #services .service-card {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    background: var(--paper, #f7f3ec) !important;
    border: 1px solid rgba(11, 36, 23, 0.1) !important;
    border-right: 1px solid rgba(11, 36, 23, 0.1) !important;
    border-bottom: 1px solid rgba(11, 36, 23, 0.1) !important;
    overflow: hidden;
    min-height: auto !important;
  }
  .service-card__icon,
  #services .service-card__icon {
    display: block !important;
    width: 100% !important;
    height: 200px !important;
    min-height: 200px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: rgba(11, 36, 23, 0.05);
    overflow: hidden;
  }
  .service-card__icon img,
  #services .service-card__icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    border: none !important;
    display: block !important;
  }
  .service-card h3,
  #services .service-card h3 {
    font-size: 1.35rem !important;
    margin: 1.25rem 1.25rem 0.5rem !important;
    line-height: 1.2 !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    hyphens: none !important;
    color: var(--green-dark, #0b2417) !important;
  }
  .service-card p,
  #services .service-card p {
    font-size: 0.92rem !important;
    margin: 0 1.25rem 1.5rem !important;
    line-height: 1.55 !important;
    color: rgba(11, 36, 23, 0.72) !important;
  }
  
  /* Number-Counter "02 / 03 / 04" der Service-Cards weg auf Mobile */
  .service-card::before,
  #services .service-card::before {
    display: none !important;
  }
}

/* === DOPPELTER HAMBURGER: .js-nav-toggle komplett aus === */
.nav__hamburger ~ .js-nav-toggle,
.nav .js-nav-toggle {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
/* Auch wenn HTML mehrere hamburger-Elemente hat, nur das echte zeigen */
.nav__hamburger + .js-nav-toggle,
.nav .js-nav-toggle + .nav__hamburger { display: none !important; }

/* Impressum/Datenschutz/AGB: doppelter Hamburger ebenso aus */
.legal-content .js-nav-toggle,
body.legal .js-nav-toggle { display: none !important; }

/* === WANDERN-KARTE auf Mobile: nutzbar machen === */
@media (max-width: 900px) {
  .wandern__map {
    padding: 0.5rem !important;
    margin: 0 -1.25rem !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-x pan-y !important;
    background: rgba(247, 243, 235, 0.6);
    position: relative;
    max-width: 100%;
  }
  .wandern__map::before {
    content: '↔ Wischen zum Erkunden';
    display: block;
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(11, 36, 23, 0.5);
    padding: 0.5rem 0;
    background: var(--paper, #f7f3ec);
    border-bottom: 1px solid rgba(183, 141, 60, 0.15);
  }
  .trail-map {
    min-width: 920px !important;
    height: auto !important;
    display: block !important;
  }
  .trail-map text { font-size: 13px !important; }
}

/* Sehr kleine Phones: Karte noch besser scrollbar */
@media (max-width: 480px) {
  .wandern__map { margin: 0 -1rem !important; padding: 0.4rem !important; }
  .trail-map { min-width: 880px !important; }
}

/* Wandern-Karte: ohne Wischen — komplett in Viewport-Breite passen */
@media (max-width: 900px) {
  .wandern__map {
    overflow: hidden !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0.75rem !important;
    background: rgba(247, 243, 235, 0.6);
    border: 1px solid rgba(183, 141, 60, 0.18);
    touch-action: auto !important;
  }
  .wandern__map::before { display: none !important; }
  
  .trail-map {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Labels lesbar trotz kleiner Karte */
  .trail-map text { font-size: 12px !important; }
  
  /* Label-Karten / Tooltips: kleiner damit sie nicht überlappen */
  .trail-map .target-label-wrap rect,
  .trail-map foreignObject { display: block; }
}

@media (max-width: 480px) {
  .trail-map text { font-size: 14px !important; }
}

/* Topbar: schneller weg beim Scrollen (auch auf Impressum/Datenschutz/AGB) */
.topbar {
  transition: transform 0.25s ease, opacity 0.25s ease !important;
  will-change: transform, opacity;
}
body.is-scrolled .topbar,
body.legal.is-scrolled .topbar,
.nav.js-sticky ~ .topbar {
  transform: translateY(-100%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Topbar: noch früher + komplett weg, Nav rutscht hoch === */
.topbar {
  transition: transform 0.18s ease, opacity 0.18s ease !important;
}
body.is-scrolled .topbar,
body.legal.is-scrolled .topbar {
  transform: translateY(-110%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Nav rutscht beim Scrollen sofort nach top: 0, kein Gap zur verschwundenen Topbar */
body.is-scrolled .nav,
body.legal.is-scrolled .nav {
  top: 0 !important;
}

/* Wenn ganz oben (scrollTop === 0) → topbar wieder da, nav unter topbar */
body:not(.is-scrolled) .nav {
  top: 36px !important;
}
@media (max-width: 720px) {
  body:not(.is-scrolled) .nav { top: 32px !important; }
}

/* Legal-Pages haben keine Topbar → Nav sitzt direkt oben, kein weißer Streifen */
body.legal-page .nav,
body.legal-page:not(.is-scrolled) .nav { top: 0 !important; }

/* Nav default + sticky: gleiche Breite & gleiches Padding === */
.nav,
.nav.js-sticky {
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  padding-left: clamp(1rem, 3vw, 2.5rem) !important;
  padding-right: clamp(1rem, 3vw, 2.5rem) !important;
  box-sizing: border-box !important;
}

.nav__inner {
  width: 100% !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
}

/* Legal-Pages: Nav default + sticky exakt gleiches Padding/Breite */
body.legal-page .nav,
body.legal-page .nav.js-sticky,
body.legal-page:not(.is-scrolled) .nav {
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  padding: 1rem clamp(1rem, 3vw, 2.5rem) !important;
  box-sizing: border-box !important;
}
body.legal-page .nav__inner {
  width: 100% !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
}

/* ============================================
   VIDEO SECTION — YouTube Embed mit Consent
   ============================================ */
.video-section { padding: 7rem 0 8rem; }
.video-section__intro {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}
.video-section__frame {
  max-width: 1100px;
  margin: 0 auto;
}
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--green-dark, #0b2417);
  border: 1px solid rgba(183, 141, 60, 0.2);
  overflow: hidden;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-embed__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 2rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(11,36,23,0.92) 0%, rgba(20,57,42,0.92) 100%),
    url("assets/video/youtube-thumb.jpg") center/cover;
  color: #f7f3ec;
}
.video-embed__placeholder::before {
  content: "▶";
  font-size: 3.5rem;
  color: var(--gold-light, #d4b06a);
  opacity: 0.85;
  line-height: 1;
}
.video-embed__text {
  margin: 0;
  max-width: 480px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(247,243,235,0.85);
}
.video-embed__btn {
  padding: 0.85rem 1.75rem;
  background: var(--gold, #b78d3c);
  color: var(--green-dark, #0b2417);
  border: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}
.video-embed__btn:hover { background: var(--gold-light, #d4b06a); }
.video-embed__link {
  font-size: 0.78rem;
  color: rgba(247,243,235,0.65);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.video-embed__link:hover { color: var(--gold-light, #d4b06a); }

@media (max-width: 720px) {
  .video-section { padding: 4rem 0 5rem; }
  .video-section__intro { margin-bottom: 2.5rem; }
  .video-embed__placeholder::before { font-size: 2.5rem; }
  .video-embed__text { font-size: 0.82rem; }
}

/* Video-Sektion: kompakter (Video kleiner + Intro-Text deutlich kleiner) */
.video-section { padding: 4.5rem 0 5rem !important; }

.video-section__intro {
  max-width: 580px !important;
  margin: 0 auto 2rem !important;
}

.video-section__intro .section__eyebrow {
  font-size: 0.7rem !important;
  letter-spacing: 0.32em !important;
  margin-bottom: 0.75rem !important;
}

.video-section__intro .section__title,
.video-section__intro .section__title--display {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem) !important;
  line-height: 1.15 !important;
  margin-bottom: 0.6rem !important;
  max-width: none;
}

.video-section__intro .section__body {
  font-size: 0.88rem !important;
  line-height: 1.5 !important;
  max-width: 460px;
  margin: 0 auto !important;
  opacity: 0.78;
}

.video-section__frame {
  max-width: 720px !important;
  margin: 0 auto !important;
}

@media (max-width: 720px) {
  .video-section__intro .section__title,
  .video-section__intro .section__title--display {
    font-size: 1.3rem !important;
  }
  .video-section__intro .section__body { font-size: 0.82rem !important; }
}

/* Video-Titel etwas größer (zwischen Display- und Body-Größe) */
.video-section__intro .section__title,
.video-section__intro .section__title--display {
  font-size: clamp(2rem, 4vw, 3.2rem) !important;
  line-height: 1.1 !important;
}
@media (max-width: 720px) {
  .video-section__intro .section__title,
  .video-section__intro .section__title--display {
    font-size: clamp(1.6rem, 6vw, 2.1rem) !important;
  }
}

/* ============================================
   HOCHZEIT TEASER — Hauptseite
   ============================================ */
.wedding-teaser {
  position: relative;
  isolation: isolate;
  min-height: 86vh;
  min-height: 86svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 8.5rem 0 !important;
  background: var(--green-dark, #0b2417);
}

.wedding-teaser__bg,
.wedding-teaser__veil {
  position: absolute;
  inset: 0;
}

.wedding-teaser__bg {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(1.02);
}

.wedding-teaser__veil {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6, 15, 10, 0.28) 0%, rgba(11, 36, 23, 0.5) 44%, rgba(6, 15, 10, 0.86) 100%),
    radial-gradient(circle at 50% 40%, rgba(6, 15, 10, 0.12), rgba(6, 15, 10, 0.54) 68%);
}

.wedding-teaser__content {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.wedding-teaser .section__eyebrow {
  color: var(--gold-light, #d4b06a);
}

.wedding-teaser .section__title,
.wedding-teaser .section__body {
  color: #fffaf0;
}

.wedding-teaser .section__title {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.wedding-teaser .section__title em {
  color: var(--gold-light, #d4b06a);
}

.wedding-teaser .section__body {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  color: rgba(255, 250, 240, 0.86);
  font-style: italic;
}

@media (max-width: 720px) {
  .wedding-teaser {
    min-height: 72vh;
    min-height: 72svh;
    padding: 5rem 0 !important;
  }

  .wedding-teaser__content {
    text-align: center;
  }

  .wedding-teaser .section__title,
  .wedding-teaser .section__body {
    margin-left: auto;
    margin-right: auto;
  }
}

/* === STATS PREMIUM ANIM === */
.about__stats.stats-premium-ready .stat {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 680ms cubic-bezier(0.22, 1, 0.36, 1), transform 680ms cubic-bezier(0.22, 1, 0.36, 1), background var(--transition);
  transition-delay: var(--stats-delay, 0ms);
}
.about__stats.stats-premium-played .stat { opacity: 1; transform: translateY(0); }
.about__stats.stats-premium-ready .stat:not(:first-child)::after {
  content: "";
  position: absolute;
  left: -1rem;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(212, 176, 106, 0.72), transparent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--stats-delay, 0ms) + 180ms);
}
.about__stats.stats-premium-played .stat:not(:first-child)::after { transform: scaleY(1); }
.stat--hours > * { transition: opacity 420ms ease, transform 420ms ease; transition-delay: var(--line-delay, 0ms); }
.about__stats.stats-premium-ready .stat--hours > * { opacity: 0; transform: translateY(8px); }
.about__stats.stats-premium-played .stat--hours > * { opacity: 1; transform: translateY(0); }
.stat.stats-glow .stat__number,
.stat.stats-glow .stat__primary { animation: statsGoldPulse 820ms ease-out 1; }
@keyframes statsGoldPulse {
  0% { text-shadow: 0 0 0 rgba(212, 176, 106, 0); filter: brightness(1); }
  38% { text-shadow: 0 0 26px rgba(212, 176, 106, 0.58); filter: brightness(1.18); }
  100% { text-shadow: 0 0 0 rgba(212, 176, 106, 0); filter: brightness(1); }
}
@media (max-width: 540px), (prefers-reduced-motion: reduce) {
  .about__stats.stats-premium-ready .stat,
  .about__stats.stats-premium-ready .stat--hours > * { opacity: 1; transform: none; transition: none; }
  .about__stats.stats-premium-ready .stat::after { display: none; }
}

/* Video Thumbnail-Link (statt iframe-Embed, da Embedding deaktiviert) */
.video-embed--link {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--green-dark, #0b2417);
  border: 1px solid rgba(183, 141, 60, 0.25);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}
.video-embed--link:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 70px rgba(11, 36, 23, 0.35);
}
.video-embed__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(0.78);
  transition: filter 0.4s ease, transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.video-embed--link:hover .video-embed__thumb {
  filter: saturate(1.15) brightness(0.88);
  transform: scale(1.04);
}
.video-embed__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(183, 141, 60, 0.92);
  color: #0b2417;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  padding-left: 6px;
  box-shadow: 0 14px 40px rgba(11, 36, 23, 0.4);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s ease;
}
.video-embed--link:hover .video-embed__play {
  background: var(--gold-light, #d4b06a);
  transform: translate(-50%, -50%) scale(1.08);
}
.video-embed__caption {
  position: absolute;
  bottom: 1rem; left: 50%;
  transform: translateX(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.9);
  background: rgba(11, 36, 23, 0.55);
  padding: 0.5rem 1rem;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
@media (max-width: 720px) {
  .video-embed__play { width: 64px; height: 64px; font-size: 1.4rem; }
  .video-embed__caption { font-size: 0.66rem; letter-spacing: 0.24em; padding: 0.4rem 0.8rem; }
}

/* === TRAIL MAP VISUAL DECLUTTER === */
.trail-map__contours,
.trail-map__terrain {
  opacity: 0.25;
}

.trail-map__shading,
.trail-map__grid {
  opacity: 0.18;
}

.trail-map__rings,
.center-halo {
  opacity: 0;
}

.trail-map__settlements text {
  opacity: 0.4;
  fill: rgba(11, 36, 23, 0.45);
  stroke: rgba(250, 248, 243, 0.38);
}

.trail-map__settlements text:nth-of-type(1),
.trail-map__settlements text:nth-of-type(2) {
  fill: rgba(11, 36, 23, 0.5);
}

.map-road,
.map-road--main,
.map-road--main-road,
.map-road--spur,
.map-road--path {
  opacity: 0.32;
}

.trail {
  stroke-width: 5.8;
  filter:
    drop-shadow(0 0 7px rgba(183, 141, 60, 0.42))
    drop-shadow(0 1px 0 rgba(250, 248, 243, 0.82));
}

.trail-case {
  stroke-width: 12.5;
  opacity: 0.92;
}

.target-label rect {
  fill: #faf8f3;
  fill-opacity: 0.98;
  stroke: rgba(183, 141, 60, 0.34);
  filter: drop-shadow(0 10px 18px rgba(11, 36, 23, 0.18));
}

.target-name {
  fill: rgba(11, 36, 23, 0.92);
}

.target-facts {
  fill: rgba(11, 36, 23, 0.68);
}

.river-core {
  opacity: 0.68;
}

.river-outline {
  opacity: 0.58;
}

/* =============================================
   HOCHZEIT-SEITE
   ============================================= */
body.page--hochzeit { background: var(--cream, #f5f0e8); }

.hochzeit-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 2rem 5rem;
  overflow: hidden;
}
.hochzeit-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  z-index: 0;
}
.hochzeit-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,36,23,0.55) 0%, rgba(11,36,23,0.25) 40%, rgba(11,36,23,0.85) 100%);
  z-index: 1;
}
.hochzeit-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  color: var(--white, #fff);
}
.hochzeit-hero .hero__eyebrow {
  color: var(--gold-light, #d4b06a);
  margin-bottom: 1.25rem;
  display: inline-block;
}
.hochzeit-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: 0.95;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.hochzeit-hero__title em {
  font-style: italic;
  color: var(--gold, #b78d3c);
  font-weight: 400;
}
.hochzeit-hero__subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  max-width: 580px;
  margin: 0 auto;
}

.hochzeit-main { background: var(--cream, #f5f0e8); }

.hochzeit-intro {
  padding: 7rem 0 5rem;
  text-align: center;
}
.hochzeit-intro .section__title { margin-left: auto; margin-right: auto; max-width: none; }
.hochzeit-intro__text {
  max-width: 680px;
  margin: 2.5rem auto 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(11, 36, 23, 0.78);
}
.hochzeit-intro__text p + p { margin-top: 1rem; }

.hochzeit-gallery { padding: 2rem 0 6rem; }
.hochzeit-gallery__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}
.hochzeit-gallery__item {
  position: relative;
  overflow: hidden;
  background: rgba(11, 36, 23, 0.05);
  aspect-ratio: 4/5;
}
.hochzeit-gallery__item--wide { aspect-ratio: 3/4; }
.hochzeit-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hochzeit-gallery__item:hover img { transform: scale(1.04); }

.hochzeit-services {
  padding: 7rem 0;
  background: var(--green-dark, #0b2417);
  color: var(--cream, #f5f0e8);
}
.hochzeit-services .section__eyebrow { color: var(--gold, #b78d3c); }
.hochzeit-services .section__title em { color: var(--gold-light, #d4b06a); }
.hochzeit-services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 5rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.hochzeit-service {
  padding: 2rem 0 0;
  border-top: 1px solid rgba(212, 176, 106, 0.3);
  position: relative;
}
.hochzeit-service__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--gold, #b78d3c);
  margin-bottom: 0.85rem;
  display: block;
}
.hochzeit-service h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--cream, #f5f0e8);
}
.hochzeit-service p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(245, 240, 232, 0.78);
  margin: 0;
}

.hochzeit-cta {
  padding: 7rem 0;
  text-align: center;
  background: var(--cream, #f5f0e8);
}
.hochzeit-cta .section__title { margin: 0 auto; max-width: none; }
.hochzeit-cta__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(11, 36, 23, 0.72);
  max-width: 540px;
  margin: 1.5rem auto 2.5rem;
  line-height: 1.55;
}
.hochzeit-cta__actions {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 900px) {
  .hochzeit-gallery__grid { grid-template-columns: 1fr; }
  .hochzeit-gallery__item, .hochzeit-gallery__item--wide { aspect-ratio: 4/5; }
  .hochzeit-services__grid { grid-template-columns: 1fr; gap: 1.75rem; margin-top: 3rem; }
  .hochzeit-intro { padding: 4rem 0 3rem; }
  .hochzeit-services, .hochzeit-cta { padding: 4rem 0; }
  .hochzeit-hero { padding: 7rem 1.25rem 4rem; min-height: 60vh; }
}

/* Hochzeit-CTA: Outline-Button lesbar (dunkler Text auf hellem Background) */
.page--hochzeit .btn--outline,
.hochzeit-cta__actions .btn--outline {
  color: var(--green-dark, #0b2417) !important;
  border-color: rgba(11, 36, 23, 0.5) !important;
}
.page--hochzeit .btn--outline:hover,
.hochzeit-cta__actions .btn--outline:hover {
  border-color: var(--green-dark, #0b2417) !important;
  background: rgba(11, 36, 23, 0.06) !important;
  color: var(--green-dark, #0b2417) !important;
}

/* Hochzeit: Section-Titles eine Spur kleiner */
.hochzeit-hero__title { font-size: clamp(2.2rem, 5.5vw, 4rem) !important; }
.hochzeit-intro .section__title,
.hochzeit-services .section__title,
.hochzeit-cta .section__title {
  font-size: clamp(1.9rem, 4.2vw, 3.2rem) !important;
  line-height: 1.1 !important;
}
@media (max-width: 720px) {
  .hochzeit-hero__title { font-size: clamp(1.9rem, 8vw, 2.6rem) !important; }
  .hochzeit-intro .section__title,
  .hochzeit-services .section__title,
  .hochzeit-cta .section__title {
    font-size: clamp(1.6rem, 6.5vw, 2.2rem) !important;
  }
}

/* Hochzeit-Hero: volle Viewport-Höhe damit nächste Sektion sauber dahinter beginnt */
.hochzeit-hero {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: clamp(7rem, 14vh, 10rem);
  padding-bottom: clamp(4rem, 10vh, 7rem);
}

/* Intro etwas mehr Top-Padding für sauberen Anfang */
.hochzeit-intro {
  padding-top: 8rem !important;
}

@media (max-width: 720px) {
  .hochzeit-hero {
    min-height: 88vh;
    min-height: 88svh;
  }
  .hochzeit-intro { padding-top: 4.5rem !important; }
}

/* Hochzeit: Foto-Credits dezent */
.hochzeit-hero__credit {
  position: absolute;
  bottom: 1.25rem;
  right: 1.5rem;
  z-index: 3;
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.65);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.hochzeit-hero__credit a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(212, 176, 106, 0.5);
}
.hochzeit-hero__credit a:hover { color: var(--gold-light, #d4b06a); }

.page--hochzeit .footer__credit {
  margin: 0.4rem 0 0 0;
  font-size: 0.72rem;
  font-style: italic;
  color: rgba(247, 243, 235, 0.55);
  text-align: center;
}
.page--hochzeit .footer__credit a {
  color: rgba(247, 243, 235, 0.78);
  text-decoration: underline;
  text-decoration-color: rgba(212, 176, 106, 0.4);
}
.page--hochzeit .footer__credit a:hover { color: var(--gold-light, #d4b06a); }

@media (max-width: 720px) {
  .hochzeit-hero__credit { bottom: 0.75rem; right: 0.9rem; font-size: 0.62rem; }
}

/* Hochzeit Service-Cards mit Foto pro Überschrift */
.hochzeit-service {
  padding: 0;
  border-top: none;
  background: rgba(247, 243, 235, 0.04);
  border: 1px solid rgba(212, 176, 106, 0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hochzeit-service__photo {
  margin: 0;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(11, 36, 23, 0.4);
}
.hochzeit-service__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: saturate(0.95) contrast(1.04);
}
.hochzeit-service:hover .hochzeit-service__photo img { transform: scale(1.05); }

.hochzeit-service__num,
.hochzeit-service h3,
.hochzeit-service p {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}
.hochzeit-service__num { margin-top: 2.5rem; }
.hochzeit-service h3 { margin-top: 0.75rem; }
.hochzeit-service p { margin-top: 0.85rem; padding-bottom: 2rem; }

@media (max-width: 720px) {
  .hochzeit-service__photo { aspect-ratio: 16 / 9; }
  .hochzeit-service__num,
  .hochzeit-service h3,
  .hochzeit-service p { padding-left: 1.25rem; padding-right: 1.25rem; }
  .hochzeit-service__num { margin-top: 2rem; }
  .hochzeit-service h3 { margin-top: 0.65rem; }
  .hochzeit-service p { margin-top: 0.75rem; padding-bottom: 1.75rem; }
}

/* ============================================
   HOCHZEIT REDESIGN — heller, anders als Mainpage
   ============================================ */

/* Services-Bereich: hell statt dunkelgrün */
.page--hochzeit .hochzeit-services {
  background: var(--paper, #faf8f3) !important;
  color: var(--green-dark, #0b2417) !important;
  padding: 7rem 0;
}
.page--hochzeit .hochzeit-services .section__eyebrow { color: var(--gold-deep, #8a6a1f) !important; }
.page--hochzeit .hochzeit-services .section__title em { color: var(--gold-deep, #8a6a1f) !important; }
.page--hochzeit .hochzeit-services .section__title { color: var(--green-dark, #0b2417) !important; }

/* Service-Cards: weiß mit Schatten statt dunkelgrün-Rahmen */
.page--hochzeit .hochzeit-service {
  background: #ffffff !important;
  border: none !important;
  box-shadow: 0 18px 50px rgba(11, 36, 23, 0.06), 0 2px 6px rgba(11, 36, 23, 0.04);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
}
.page--hochzeit .hochzeit-service:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(11, 36, 23, 0.12), 0 4px 12px rgba(11, 36, 23, 0.06);
}
.page--hochzeit .hochzeit-service h3 {
  color: var(--green-dark, #0b2417) !important;
}
.page--hochzeit .hochzeit-service p {
  color: rgba(11, 36, 23, 0.7) !important;
}
.page--hochzeit .hochzeit-service__num {
  color: var(--gold-deep, #8a6a1f) !important;
}

/* Gallery-Bereich: heller, mit creme Hintergrund */
.page--hochzeit .hochzeit-gallery {
  background: var(--paper, #faf8f3);
}

.page--hochzeit .hochzeit-gallery__grid {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.page--hochzeit .hochzeit-gallery__item {
  aspect-ratio: 16/10;
}

/* Intro-Bereich: heller, ruhiger */
.page--hochzeit .hochzeit-intro {
  background: var(--paper, #faf8f3);
}

.page--hochzeit .hochzeit-intro--image {
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  min-height: 78svh;
  display: grid;
  align-items: center;
  background: var(--green-dark, #0b2417) !important;
}

.page--hochzeit .hochzeit-intro__bg,
.page--hochzeit .hochzeit-intro__veil {
  position: absolute;
  inset: 0;
}

.page--hochzeit .hochzeit-intro__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.page--hochzeit .hochzeit-intro__veil {
  background:
    linear-gradient(90deg, rgba(8, 25, 16, 0.72), rgba(8, 25, 16, 0.36) 48%, rgba(8, 25, 16, 0.66)),
    linear-gradient(180deg, rgba(8, 25, 16, 0.22), rgba(8, 25, 16, 0.62));
  z-index: 1;
}

.page--hochzeit .hochzeit-intro--image .container {
  position: relative;
  z-index: 2;
}

.page--hochzeit .hochzeit-intro--image .section__eyebrow,
.page--hochzeit .hochzeit-intro--image .section__title,
.page--hochzeit .hochzeit-intro--image .hochzeit-intro__text {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.32);
}

.page--hochzeit .hochzeit-intro--image .section__title em,
.page--hochzeit .hochzeit-intro--image .section__eyebrow {
  color: var(--gold-light, #e8c97a) !important;
}

.page--hochzeit .hochzeit-intro--image .hochzeit-intro__text {
  color: rgba(255, 255, 255, 0.82) !important;
}
.page--hochzeit .hochzeit-intro .section__title em {
  color: var(--gold-deep, #8a6a1f) !important;
}
.page--hochzeit .hochzeit-intro .section__title {
  color: var(--green-dark, #0b2417) !important;
}
.page--hochzeit .hochzeit-intro .section__eyebrow {
  color: var(--gold-deep, #8a6a1f) !important;
}
.page--hochzeit .hochzeit-intro__text {
  color: rgba(11, 36, 23, 0.75) !important;
}

.page--hochzeit .hochzeit-intro--image .section__eyebrow,
.page--hochzeit .hochzeit-intro--image .section__title,
.page--hochzeit .hochzeit-intro--image .hochzeit-intro__text {
  color: rgba(255, 255, 255, 0.9) !important;
}

.page--hochzeit .hochzeit-intro--image .section__title em,
.page--hochzeit .hochzeit-intro--image .section__eyebrow {
  color: var(--gold-light, #e8c97a) !important;
}

/* CTA-Bereich: heller */
.page--hochzeit .hochzeit-cta {
  background: #ffffff;
}
.page--hochzeit .hochzeit-cta .section__title em {
  color: var(--gold-deep, #8a6a1f) !important;
}
.page--hochzeit .hochzeit-cta .section__title {
  color: var(--green-dark, #0b2417) !important;
}
.page--hochzeit .hochzeit-cta .section__eyebrow {
  color: var(--gold-deep, #8a6a1f) !important;
}
.page--hochzeit .hochzeit-cta__text {
  color: rgba(11, 36, 23, 0.7) !important;
}

/* Service-Cards Foto: dezenter Rahmen für Hochzeit-Stimmung */
.page--hochzeit .hochzeit-service__photo {
  background: rgba(11, 36, 23, 0.04);
}

/* Trenner zwischen Sektionen: feine Goldlinie */
.page--hochzeit .hochzeit-intro {
  border-bottom: 1px solid rgba(212, 176, 106, 0.18);
}
.page--hochzeit .hochzeit-gallery {
  border-bottom: 1px solid rgba(212, 176, 106, 0.18);
}
.page--hochzeit .hochzeit-services {
  border-bottom: 1px solid rgba(212, 176, 106, 0.18);
}

/* Body insgesamt heller */
body.page--hochzeit {
  background: var(--paper, #faf8f3);
}

/* Outline Button auf weißem Bereich */
.page--hochzeit .hochzeit-cta .btn--outline {
  color: var(--green-dark, #0b2417) !important;
  border-color: rgba(11, 36, 23, 0.45) !important;
}
.page--hochzeit .hochzeit-cta .btn--outline:hover {
  background: rgba(11, 36, 23, 0.04) !important;
  border-color: var(--green-dark, #0b2417) !important;
}

/* Wedding-Teaser: voll-flächig ohne grünen Streifen unten === */
.wedding-teaser {
  padding: 0 !important;
  min-height: 100vh;
  min-height: 100svh;
  background: transparent !important;
}
.wedding-teaser__bg {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  filter: saturate(0.95) contrast(1.04) !important;
}
.wedding-teaser__veil {
  background:
    linear-gradient(180deg, rgba(6, 15, 10, 0.25) 0%, rgba(11, 36, 23, 0.35) 50%, rgba(6, 15, 10, 0.55) 100%) !important;
}
.wedding-teaser__content {
  padding: 6rem 1.5rem !important;
}

/* Section-Number bei Hochzeit-Teaser dezent oder weg */
.wedding-teaser .section__number { display: none !important; }

/* Nav: transparenter und weißer Zustand exakt gleiche Maße */
.nav,
.nav.js-sticky,
.nav.scrolled,
body.is-scrolled .nav {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 1.4rem 2.5rem !important;
  border-bottom: 1px solid transparent !important;
}

.nav.js-sticky,
.nav.scrolled,
body.is-scrolled .nav {
  border-bottom-color: rgba(13, 43, 26, 0.08) !important;
}

.nav__inner {
  width: 100% !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

@media (max-width: 720px) {
  .nav,
  .nav.js-sticky,
  .nav.scrolled,
  body.is-scrolled .nav {
    padding: 0.85rem 1rem !important;
  }
}

/* Dokument-Feedback: weichere Seitenwechsel und einzeilige Öffnungszeiten */
body {
  transition: opacity 220ms ease, filter 220ms ease;
}

body.is-page-leaving {
  opacity: 0.82;
  filter: saturate(0.92);
}

.stat--hours {
  display: flex !important;
  flex-direction: row !important;
  align-items: baseline !important;
  justify-content: center !important;
  gap: 0.7rem !important;
  flex-wrap: nowrap !important;
}

.stat--hours .stat__primary,
.stat--hours .stat__season {
  order: initial !important;
  margin: 0 !important;
  white-space: nowrap !important;
  overflow-wrap: normal !important;
}

.stat--hours .stat__season {
  opacity: 0.72 !important;
}

@media (max-width: 720px) {
  .stat--hours {
    flex-direction: column !important;
    gap: 0.4rem !important;
  }
}
/* === Struktur-Fixes Briefing: Anker, Kontakt, Cookie-Klickflächen === */
#speisen-teaser {
  scroll-margin-top: 110px;
}

#contact {
  padding-top: clamp(3.5rem, 5vw, 5rem);
  padding-bottom: clamp(3rem, 4vw, 4rem);
}

#contact .container {
  max-width: 1180px;
}

#contact .contact__grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: center !important;
}

#contact .section__eyebrow {
  margin-bottom: 0.7rem;
}

#contact .section__title,
#contact .section__title--display {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4vw, 3.75rem);
}

#contact .contact__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.35rem;
  margin-top: 1.35rem;
}

#contact .contact__item {
  gap: 0.75rem;
}

#contact .contact__icon {
  font-size: 1.25rem;
  line-height: 1.1;
}

#contact .contact__item strong {
  margin-bottom: 0.2rem;
}

#contact .contact__item p {
  margin: 0;
  line-height: 1.45;
}

#contact .contact__note {
  margin-top: 0.45rem !important;
  max-width: 22rem;
  line-height: 1.45 !important;
}

#contact .contact__map {
  margin-top: 0 !important;
}

#contact .contact__map iframe,
#contact .map-consent-placeholder {
  height: clamp(340px, 36vw, 390px) !important;
}

.cookie-banner {
  pointer-events: none;
}

.cookie-banner.is-visible {
  pointer-events: auto;
}

@media (max-width: 900px) {
  #contact {
    padding-top: 4rem;
    padding-bottom: 3.5rem;
  }

  #contact .contact__grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  #contact .contact__details {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  #contact .contact__map iframe,
  #contact .map-consent-placeholder {
    height: 320px !important;
  }
}

/* ============================================
   FEEDBACK V4 — Punkte #4, #5, #6
   ============================================ */

/* === #4 Hero-Infobar Speisekarte: cleaner + kantiger === */
.menu-hero__meta {
  border-radius: 2px !important;
  background: rgba(0, 0, 0, 0.42) !important;
  border: 1px solid rgba(212, 176, 106, 0.35) !important;
  padding: 0.85rem 1.5rem !important;
  -webkit-backdrop-filter: blur(10px) saturate(140%) !important;
  backdrop-filter: blur(10px) saturate(140%) !important;
  gap: 1.25rem !important;
  font-size: 0.74rem !important;
  letter-spacing: 0.24em !important;
}
.menu-hero__meta a {
  border-bottom-color: rgba(232, 201, 122, 0.7);
  font-weight: 500;
}
.menu-hero__dot {
  opacity: 0.4 !important;
  font-size: 0.55rem !important;
  color: var(--gold-light, #d4b06a) !important;
}

@media (max-width: 720px) {
  .menu-hero__meta {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 0.5rem 0.9rem !important;
    justify-content: center !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.66rem !important;
    letter-spacing: 0.18em !important;
  }
  .menu-hero__dot { display: inline !important; opacity: 0.3 !important; }
}

/* === #5 Speisekarte kompakter & übersichtlicher === */
.speisekarte__container { gap: 2.25rem !important; }
.speisekarte .menu-block--page {
  padding: 1.5rem 1.75rem 1rem !important;
}
.speisekarte .menu-block__head {
  margin-bottom: 1rem !important;
  padding-bottom: 0.65rem !important;
  border-bottom: 1px solid rgba(212, 176, 106, 0.18);
}
.speisekarte .menu-block__title {
  font-size: 1.65rem !important;
}
.speisekarte .menu-block__num {
  font-size: 1.1rem !important;
}
.speisekarte .menu-block__items li {
  padding: 0.55rem 0 !important;
  border-bottom: 1px dotted rgba(247, 240, 232, 0.08);
}
.speisekarte .menu-block__items li:last-child { border-bottom: none; }
.speisekarte .mi__name { font-size: 0.98rem !important; line-height: 1.3 !important; }
.speisekarte .mi__name small { font-size: 0.76rem !important; margin-top: 0.05rem; opacity: 0.55; }
.speisekarte .mi__price {
  font-size: 0.98rem !important;
  text-align: right !important;
  font-weight: 500;
}

.speisekarte { padding: 4rem 1.5rem 5rem !important; }

@media (max-width: 720px) {
  .speisekarte { padding: 2.5rem 1rem 3rem !important; }
  .speisekarte__container { gap: 1.75rem !important; }
  .speisekarte .menu-block--page { padding: 1.25rem 1.25rem 0.85rem !important; }
  .speisekarte .menu-block__title { font-size: 1.35rem !important; }
  .speisekarte .menu-block__items li { padding: 0.45rem 0 !important; }
}

/* === #6 Speisekarten-Abschlussbereich kompakter === */
.speisekarte__note {
  margin: 1.5rem auto 0 !important;
  padding-top: 1.5rem !important;
  font-size: 0.82rem !important;
  line-height: 1.55 !important;
  max-width: 640px;
}
.speisekarte__back {
  margin-top: 1.25rem !important;
  gap: 0.75rem !important;
  flex-wrap: wrap;
}
.speisekarte__back .btn {
  padding: 0.85rem 1.6rem !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.22em !important;
}
@media (max-width: 480px) {
  .speisekarte__back { flex-direction: column !important; width: 100%; }
  .speisekarte__back .btn { width: 100%; justify-content: center; }
}

/* === #1 Wetteranzeige — dezent im Hero === */
.alpine-live {
  position: absolute;
  top: clamp(5.5rem, 14vh, 8.5rem);
  right: 2rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.95rem;
  background: rgba(13, 43, 26, 0.42);
  border: 1px solid rgba(212, 176, 106, 0.35);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
  color: rgba(247, 243, 235, 0.92);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: alpineLiveFadeIn 1s ease-out 1.8s forwards;
}

@keyframes alpineLiveFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.alpine-live__icon {
  font-size: 0.95rem;
  line-height: 1;
}

.alpine-live__divider {
  width: 1px;
  height: 12px;
  background: rgba(212, 176, 106, 0.4);
}

.alpine-live__value {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold-light, #d4b06a);
}

.alpine-live__label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.7);
}

@media (max-width: 900px) {
  .alpine-live {
    top: clamp(5rem, 12vh, 7rem);
    right: 1rem;
    padding: 0.4rem 0.75rem;
    gap: 0.45rem;
    font-size: 0.7rem;
  }
  .alpine-live__icon { font-size: 0.85rem; }
  .alpine-live__value { font-size: 0.8rem; }
  .alpine-live__label { font-size: 0.55rem; letter-spacing: 0.22em; }
}

@media (max-width: 480px) {
  .alpine-live__label { display: none; }
  .alpine-live__divider { display: none; }
}

/* === WETTER-PILLE NEU — horizontal, clean, dezent === */
.alpine-live {
  position: absolute !important;
  top: clamp(5rem, 13vh, 7.5rem) !important;
  right: 1.5rem !important;
  left: auto !important;
  z-index: 4;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.65rem !important;
  padding: 0.5rem 0.95rem !important;
  background: rgba(11, 36, 23, 0.55) !important;
  border: 1px solid rgba(247, 243, 235, 0.18) !important;
  border-radius: 999px !important;
  -webkit-backdrop-filter: blur(14px) saturate(140%) !important;
  backdrop-filter: blur(14px) saturate(140%) !important;
  color: rgba(247, 243, 235, 0.95) !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  white-space: nowrap !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.alpine-live__icon {
  font-size: 0.95rem !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
}
.alpine-live__divider {
  width: 1px !important;
  height: 14px !important;
  background: rgba(247, 243, 235, 0.22) !important;
  display: inline-block !important;
}
.alpine-live__value {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-style: italic !important;
  font-size: 0.92rem !important;
  font-weight: 500 !important;
  color: var(--gold-light, #d4b06a) !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
}
.alpine-live__label {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
  color: rgba(247, 243, 235, 0.7) !important;
  line-height: 1 !important;
  padding-left: 0.15rem;
}
@media (max-width: 720px) {
  .alpine-live {
    top: clamp(4.5rem, 11vh, 6rem) !important;
    right: 1rem !important;
    padding: 0.4rem 0.75rem !important;
    gap: 0.5rem !important;
  }
  .alpine-live__icon { font-size: 0.85rem !important; }
  .alpine-live__value { font-size: 0.82rem !important; }
  .alpine-live__label { font-size: 0.6rem !important; letter-spacing: 0.18em !important; }
}
@media (max-width: 440px) {
  .alpine-live__divider,
  .alpine-live__label { display: none !important; }
  .alpine-live { gap: 0.4rem !important; }
}
/* Aktuelles-Wetter-Kicker im Pill */
.alpine-live__kicker {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.32em !important;
  text-transform: uppercase !important;
  color: var(--gold-light, #d4b06a) !important;
  line-height: 1 !important;
  padding-right: 0.1rem;
}
@media (max-width: 720px) {
  .alpine-live__kicker { font-size: 0.55rem !important; letter-spacing: 0.22em !important; }
}
@media (max-width: 440px) {
  .alpine-live__kicker { display: none !important; }
}

/* === DESIGN POLISH V2 === */
:root {
  --polish-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --polish-gold-line: rgba(183,141,60,0.25);
  --polish-shadow: 0 4px 12px rgba(11,36,23,0.04), 0 12px 40px rgba(11,36,23,0.08);
  --polish-shadow-hover: 0 4px 12px rgba(11,36,23,0.05), 0 18px 52px rgba(11,36,23,0.14);
}
body { line-height: 1.62; text-rendering: optimizeLegibility; }
:is(.section,.moments,.pullquote,.hochzeit-services,.hochzeit-intro,.hochzeit-cta) {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}
.speisekarte { padding: 5rem 1.5rem 6rem !important; }
:is(.section + .section,.moments,.pullquote,.hochzeit-services,.hochzeit-intro,.hochzeit-cta,.speisekarte)::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(2rem, calc((100% - 1200px) / 2));
  right: max(2rem, calc((100% - 1200px) / 2));
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--polish-gold-line) 18%, var(--polish-gold-line) 82%, transparent);
  pointer-events: none;
}
:is(.section,.moments,.hochzeit-services,.hochzeit-intro,.hochzeit-cta).is-polish-lined::after {
  content: "";
  position: absolute;
  top: 0;
  left: max(2rem, calc((100% - 1200px) / 2));
  width: min(220px, 18vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,201,122,0.65));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 900ms var(--polish-ease);
}
:is(.section,.moments,.hochzeit-services,.hochzeit-intro,.hochzeit-cta).fx-line-visible::after { transform: scaleX(1); }
:is(.hero__title,.menu-hero__title,.hochzeit-hero__title,.section__title--display) {
  line-height: 0.98 !important;
  letter-spacing: 0 !important;
}
:is(.section__title,.hochzeit-service h3,.menu-block__title) { line-height: 1.05 !important; }
:is(.section__body,.hochzeit-service p,.hochzeit-intro__text,.hochzeit-cta__text,.menu-hero__subtitle,.hochzeit-hero__subtitle) { line-height: 1.65 !important; }
:is(.hero__eyebrow,.section__eyebrow,.menu-hero__meta,.mi__price,.menu-block__num,.hochzeit-service__num) { letter-spacing: max(0.04em, 0.24em); }
.section__eyebrow {
  padding-bottom: 0.34rem;
  background: linear-gradient(90deg, currentColor, rgba(183,141,60,0)) 0 100% / 0 1px no-repeat;
  transition: color 400ms var(--polish-ease), background-size 400ms var(--polish-ease);
}
:is(.section,.moments,.hochzeit-services,.hochzeit-intro,.hochzeit-cta):hover .section__eyebrow { background-size: 100% 1px; }
.section__number {
  top: 4rem !important;
  right: max(2rem, calc((100% - 1200px) / 2)) !important;
  opacity: 1 !important;
  color: rgba(201,168,76,0.065) !important;
  transform: none !important;
}
.section__number--dark { color: rgba(13,43,26,0.055) !important; }
:is(.btn,.fischteich-lightbox__button,.map-consent-placeholder__btn) {
  transition: color 400ms var(--polish-ease), background 400ms var(--polish-ease), border-color 400ms var(--polish-ease), box-shadow 400ms var(--polish-ease), transform 400ms var(--polish-ease) !important;
}
:is(.btn,.fischteich-lightbox__button,.map-consent-placeholder__btn):hover { transform: translateY(-3px) !important; }
.btn--primary:hover { box-shadow: 0 4px 12px rgba(183,141,60,0.08), 0 16px 42px rgba(183,141,60,0.28) !important; }
:is(.service-card,.stat,.award,.dish,.gallery-item,.moments__item,.hochzeit-service,.menu-block--page,.contact__map,.video-section__frame) {
  box-shadow: var(--polish-shadow) !important;
  transition: transform 400ms var(--polish-ease), box-shadow 400ms var(--polish-ease), border-color 400ms var(--polish-ease), background 400ms var(--polish-ease) !important;
}
:is(.service-card,.stat,.award,.dish,.gallery-item,.moments__item,.hochzeit-service,.menu-block--page,.contact__map,.video-section__frame):hover {
  box-shadow: var(--polish-shadow-hover) !important;
  transform: translateY(-3px) !important;
}
:is(.about__photo,.speisen__hero,.speisen__photo,.gallery-item,.moments__item,.hochzeit-service__photo,.hochzeit-gallery__item,.wedding-teaser) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.about__photo::after,
.speisen__hero::before,
.speisen__photo::before,
.gallery-item::before,
.moments__item::before,
.hochzeit-service__photo::before,
.hochzeit-gallery__item::before,
.wedding-teaser::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(232,201,122,0.18), transparent 34%);
  transition: opacity 500ms var(--polish-ease);
}
.about__photo:hover::after,
.speisen__hero:hover::before,
.speisen__photo:hover::before,
.gallery-item:hover::before,
.moments__item:hover::before,
.hochzeit-service__photo:hover::before,
.hochzeit-gallery__item:hover::before,
.wedding-teaser:hover::after { opacity: 0.44; }
:is(.hero img,.menu-hero__bg,.hochzeit-hero__bg,.about__photo img,.service-card__icon img,.dish img,.gallery-item img,.moments__item img,.speisen__hero img,.speisen__photo img,.hochzeit-service__photo img,.hochzeit-gallery__item img,.wedding-teaser__bg) {
  filter: saturate(1.02) contrast(1.02);
  transition: transform 900ms var(--polish-ease), filter 900ms var(--polish-ease) !important;
}
:is(.about__photo:hover img,.dish:hover img,.gallery-item:hover img,.moments__item:hover img,.speisen__hero:hover img,.speisen__photo:hover img,.hochzeit-service:hover img,.hochzeit-gallery__item:hover img,.wedding-teaser:hover .wedding-teaser__bg) {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.04) !important;
}
:is(.reveal,.js-reveal-ready) {
  transition-duration: 680ms !important;
  transition-timing-function: var(--polish-ease) !important;
}
.fx-stagger { transition-delay: var(--fx-stagger-delay, 0ms) !important; }
@media (max-width: 900px) {
  :is(.section,.moments,.pullquote,.hochzeit-services,.hochzeit-intro,.hochzeit-cta) { padding-top: 5rem !important; padding-bottom: 5rem !important; }
  .speisekarte { padding-top: 3rem !important; padding-bottom: 4rem !important; }
  .section__number { top: 1.5rem !important; right: 1rem !important; opacity: 0.55 !important; }
}
@media (max-width: 560px) {
  :is(.section,.moments,.pullquote,.hochzeit-services,.hochzeit-intro,.hochzeit-cta) { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
}
/* Öffnungszeiten-Stat: breiter & umbruchfähig (nicht abschneiden) */
.about__stats {
  align-items: start !important;
}
.stat--hours {
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
  overflow: visible !important;
}
.stat--hours .stat__primary,
.stat--hours .stat__season {
  white-space: normal !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
  text-align: left !important;
  display: block !important;
  width: 100% !important;
}
.stat--hours .stat__primary {
  font-size: clamp(0.95rem, 1.25vw, 1.4rem) !important;
  line-height: 1.25 !important;
  letter-spacing: -0.005em !important;
  white-space: nowrap !important;
}
.stat--hours .stat__season {
  font-size: clamp(0.7rem, 0.9vw, 0.85rem) !important;
  line-height: 1.4 !important;
  margin-top: 0.35rem !important;
}

/* Bei engen Spalten umbrechen erlauben */
@media (max-width: 1100px) {
  .stat--hours .stat__primary {
    white-space: normal !important;
    font-size: 1rem !important;
  }
}
@media (max-width: 720px) {
  .stat--hours .stat__primary { font-size: 1.05rem !important; }
}

/* === BUGFIX: Stats clip + hero reload jitter V2 === */
.hero__media {
  transform: translate3d(0, var(--hero-media-y, 0px), 0) scale(1.05) !important;
  transition: filter 900ms var(--polish-ease, cubic-bezier(0.2, 0.8, 0.2, 1)) !important;
  will-change: transform;
}

#about .about__stats {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

#about .stat {
  min-width: 0 !important;
  overflow: visible !important;
}

#about .stat--hours {
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 0.28rem !important;
  padding-right: 1rem !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
}

#about .stat--hours .stat__primary,
#about .stat--hours .stat__season {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important;
  text-align: left !important;
  white-space: normal !important;
  word-break: normal !important;
}

#about .stat--hours .stat__primary {
  font-size: clamp(0.92rem, 1.05vw, 1.12rem) !important;
  line-height: 1.24 !important;
  letter-spacing: 0 !important;
}

#about .stat--hours .stat__season {
  font-size: clamp(0.66rem, 0.72vw, 0.78rem) !important;
  line-height: 1.35 !important;
  letter-spacing: 0.04em !important;
}

@media (max-width: 1100px) {
  #about .about__stats { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}

@media (max-width: 540px) {
  #about .about__stats { grid-template-columns: 1fr !important; }
  #about .stat--hours .stat__primary { font-size: 1.05rem !important; }
}

/* Hero-Bild Reload-Bug Fix — entferne heroZoomOut, nur sanftes Ken Burns */
.hero__media,
.hero__media[class] {
  animation: heroKenBurns 38s ease-in-out infinite !important;
  transform: scale(1.08);
  filter: brightness(1);
}

/* === STRUKTUR V5 === */
.hero__media,
.hero__media[class] {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 30% !important;
  transform-origin: center 30% !important;
}

.hero__overlay {
  background:
    linear-gradient(180deg,
      rgba(13, 43, 26, 0.42) 0%,
      rgba(13, 43, 26, 0.12) 18%,
      rgba(13, 43, 26, 0.04) 45%,
      rgba(13, 43, 26, 0.30) 78%,
      rgba(13, 43, 26, 0.55) 100%) !important;
}

#about .about__stats {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

#about .stat--hours,
#about .stat--hours-2 {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 0.35rem !important;
  text-align: left !important;
}

#about .stat--hours .stat__heading {
  display: block !important;
  order: 1 !important;
  margin: 0 0 0.1rem !important;
  font-family: var(--font-display) !important;
  font-size: clamp(0.86rem, 1vw, 1rem) !important;
  line-height: 1.1 !important;
  letter-spacing: 0.13em !important;
  text-transform: uppercase !important;
  color: var(--gold-light) !important;
}

#about .stat--hours .stat__primary {
  order: 2 !important;
  font-size: clamp(1.18rem, 1.55vw, 1.62rem) !important;
  line-height: 1.1 !important;
  letter-spacing: 0.01em !important;
  white-space: nowrap !important;
}

#about .stat--hours .stat__season {
  order: 3 !important;
  margin-top: 0.15rem !important;
  font-size: clamp(0.72rem, 0.85vw, 0.88rem) !important;
  line-height: 1.35 !important;
  letter-spacing: 0.035em !important;
  white-space: normal !important;
}

#services {
  padding-bottom: clamp(5.5rem, 7vw, 7rem) !important;
}

.section--green#speisen {
  padding-top: clamp(3rem, 5vw, 4.5rem) !important;
}

#speisen .section__eyebrow {
  margin-top: 0 !important;
}

.section__number {
  right: max(0.75rem, calc((100% - 1200px) / 2 - 2rem)) !important;
}

@media (max-width: 900px) {
  .section__number {
    right: 0.35rem !important;
  }
}

@media (max-width: 720px) {
  #about .about__stats {
    grid-template-columns: 1fr !important;
  }

  #about .stat--hours .stat__primary {
    white-space: normal !important;
  }

  #services {
    padding-bottom: 3.25rem !important;
  }

  .section--green#speisen {
    padding-top: 3rem !important;
  }
}

/* === V5 #11 — Hochzeit-Hero-Titel an Startseiten-Schriftzug angleichen === */
/* Identische Typografie wie .section__title--display im wedding-teaser */
.hochzeit-hero__title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: clamp(2.5rem, 7vw, 5.5rem) !important;
  font-weight: 900 !important;
  line-height: 0.95 !important;
  letter-spacing: -0.03em !important;
  margin: 0 0 1.5rem !important;
}
.hochzeit-hero__title em {
  font-style: italic !important;
  color: var(--gold, #b78d3c) !important;
  font-weight: 400 !important;
  text-shadow: 0 0 30px rgba(201, 168, 76, 0.2);
}
/* Eyebrow ebenfalls konsistent zur Startseite */
.hochzeit-hero .hero__eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.4em;
  font-size: 0.75rem;
}
/* Subtitle gleiche Anmutung wie section__body im Teaser */
.hochzeit-hero__subtitle {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-style: italic !important;
  line-height: 1.55 !important;
}

@media (max-width: 720px) {
  .hochzeit-hero__title {
    font-size: clamp(2rem, 9vw, 3.2rem) !important;
  }
}

/* === Wetter-Pille auf Mobile = volle Desktop-Version === */
@media (max-width: 720px) {
  .alpine-live {
    /* Voll sichtbar mit Kicker + Label, unter die Nav gesetzt */
    top: auto !important;
    bottom: 1.25rem !important;
    right: 1rem !important;
    left: auto !important;
    padding: 0.5rem 1rem !important;
    gap: 0.6rem !important;
    font-size: 0.72rem !important;
    z-index: 60 !important;
  }
  .alpine-live__kicker {
    display: inline !important;
    font-size: 0.55rem !important;
    letter-spacing: 0.22em !important;
  }
  .alpine-live__divider { display: inline-block !important; }
  .alpine-live__icon { font-size: 0.9rem !important; }
  .alpine-live__value { font-size: 0.85rem !important; }
  .alpine-live__label {
    display: inline !important;
    font-size: 0.58rem !important;
    letter-spacing: 0.2em !important;
  }
}

@media (max-width: 440px) {
  /* Auch hier: NICHT mehr Teile verstecken — alles wie Desktop, nur kleiner */
  .alpine-live__kicker { display: inline !important; font-size: 0.5rem !important; }
  .alpine-live__divider { display: inline-block !important; }
  .alpine-live__label { display: inline !important; font-size: 0.52rem !important; }
  .alpine-live {
    bottom: 1rem !important;
    right: 0.75rem !important;
    padding: 0.45rem 0.8rem !important;
    gap: 0.45rem !important;
  }
}

/* === Wedding teaser mirrors Hochzeit hero V6 === */
.wedding-teaser {
  min-height: 75vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 9rem 2rem 5rem !important;
  background: var(--green-dark, #0b2417) !important;
}

.wedding-teaser__bg {
  inset: 0 !important;
  z-index: 0 !important;
  filter: saturate(0.92) contrast(1.04) !important;
  object-position: center !important;
  transform: none !important;
}

.wedding-teaser__veil {
  z-index: 1 !important;
  background: linear-gradient(180deg, rgba(11,36,23,0.55) 0%, rgba(11,36,23,0.25) 40%, rgba(11,36,23,0.85) 100%) !important;
}

.wedding-teaser__content.hochzeit-hero__inner {
  position: relative !important;
  z-index: 2 !important;
  width: min(100%, 780px) !important;
  max-width: 780px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  color: var(--white, #fff) !important;
  text-align: center !important;
}

.wedding-teaser .hero__eyebrow {
  color: var(--gold-light, #d4b06a) !important;
  margin: 0 0 1.25rem !important;
  display: inline-block !important;
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.4em !important;
}

.wedding-teaser .hochzeit-hero__title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: clamp(2.5rem, 7vw, 5.5rem) !important;
  font-weight: 900 !important;
  line-height: 0.95 !important;
  letter-spacing: -0.03em !important;
  margin: 0 0 1.5rem !important;
  color: #fff !important;
  text-shadow: 0 4px 30px rgba(0,0,0,0.35) !important;
}

.wedding-teaser .hochzeit-hero__title em {
  font-style: italic !important;
  color: var(--gold, #b78d3c) !important;
  font-weight: 400 !important;
  text-shadow: 0 0 30px rgba(201, 168, 76, 0.2) !important;
}

.wedding-teaser .hochzeit-hero__subtitle {
  max-width: 580px !important;
  margin: 0 auto !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  font-style: italic !important;
  font-size: clamp(1rem, 1.5vw, 1.25rem) !important;
  line-height: 1.55 !important;
  color: rgba(255,255,255,0.88) !important;
}

.wedding-teaser .btn {
  display: none !important;
}

.wedding-teaser__credit {
  position: absolute;
  right: 1.5rem;
  bottom: 1.1rem;
  z-index: 2;
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

@media (max-width: 720px) {
  .wedding-teaser {
    min-height: 60vh !important;
    padding: 7rem 1.25rem 4rem !important;
  }

  .wedding-teaser .hochzeit-hero__title {
    font-size: clamp(2rem, 9vw, 3.2rem) !important;
  }

  .wedding-teaser__credit {
    right: 0.9rem;
    bottom: 0.75rem;
    font-size: 0.62rem;
  }
}

/* === smooth scroll hero state V6 === */
.hero__media,
.hero__media[class] {
  animation: none !important;
  transform: translate3d(0, var(--hero-media-y, 0px), 0) scale(1.06) !important;
  transition: filter 700ms cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

.wedding-teaser .hero__eyebrow::before,
.wedding-teaser .section__eyebrow::before,
.wedding-teaser .hero__eyebrow::after,
.wedding-teaser .section__eyebrow::after {
  display: none !important;
  content: none !important;
}

.wedding-teaser .hero__eyebrow {
  width: 100% !important;
  text-align: center !important;
  background: none !important;
  padding-left: 0 !important;
}

/* === Wedding viewport polish V7 === */
:is(.hero, .menu-hero, .hochzeit-hero) {
  min-height: 100svh !important;
}

@supports (height: 100dvh) {
  :is(.hero, .menu-hero, .hochzeit-hero) {
    min-height: 100dvh !important;
  }
}

.wedding-teaser {
  --wedding-visible-offset: clamp(5.25rem, 9vh, 7rem);
  min-height: calc(100svh - var(--wedding-visible-offset)) !important;
  height: calc(100svh - var(--wedding-visible-offset)) !important;
  padding: clamp(3.25rem, 7vh, 5.75rem) clamp(1rem, 4vw, 2rem) !important;
  overflow: hidden !important;
}

@supports (height: 100dvh) {
  .wedding-teaser {
    min-height: calc(100dvh - var(--wedding-visible-offset)) !important;
    height: calc(100dvh - var(--wedding-visible-offset)) !important;
  }
}

.wedding-teaser__bg,
.wedding-teaser__veil {
  height: 100% !important;
}

.wedding-teaser .btn.btn--primary {
  display: inline-flex !important;
  margin-top: clamp(1.15rem, 2.4vh, 1.8rem) !important;
  color: var(--green-dark, #0b2417) !important;
  background: var(--gold, #b78d3c) !important;
  border-color: rgba(255,255,255,0.24) !important;
  box-shadow: 0 4px 12px rgba(11,36,23,0.12), 0 12px 40px rgba(11,36,23,0.18) !important;
}

.wedding-teaser .btn.btn--primary:hover {
  transform: translateY(-3px) !important;
  background: var(--gold-light, #d4b06a) !important;
  box-shadow: 0 4px 12px rgba(11,36,23,0.14), 0 16px 46px rgba(11,36,23,0.28) !important;
}

.wedding-teaser__credit {
  bottom: max(0.85rem, env(safe-area-inset-bottom)) !important;
}

@media (max-height: 760px) and (min-width: 721px) {
  .wedding-teaser {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .wedding-teaser .hochzeit-hero__title {
    font-size: clamp(2.6rem, 5.8vw, 4.7rem) !important;
    margin-bottom: 1rem !important;
  }

  .wedding-teaser .hochzeit-hero__subtitle {
    font-size: clamp(0.98rem, 1.35vw, 1.12rem) !important;
    line-height: 1.45 !important;
  }
}

@media (max-width: 720px) {
  .wedding-teaser {
    --wedding-visible-offset: clamp(4.5rem, 11vh, 5.6rem);
    padding: 3.75rem 1.25rem 3.25rem !important;
  }

  .wedding-teaser .btn.btn--primary {
    padding: 0.86rem 1.15rem !important;
    min-height: 44px !important;
  }
}

/* === LESBARKEIT + NATURGRAFIK === */
:is(.section__body, .contact__item p, .contact__note, .speisen-teaser__hint, .hochzeit-hero__subtitle, .wedding-teaser .hochzeit-hero__subtitle) {
  font-size: clamp(1rem, 0.96rem + 0.18vw, 1.125rem) !important;
  line-height: 1.62 !important;
}

:is(.hero__eyebrow, .section__eyebrow, .menu-hero__meta, .menu-footer__label, .contact__item strong, .speisen-teaser__by, .dish__note) {
  font-size: clamp(0.75rem, 0.72rem + 0.1vw, 0.84rem) !important;
}

.menu-block__num {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.6rem) !important;
}

.stat__season,
.stat--hours .stat__season,
#about .stat--hours .stat__season {
  font-size: clamp(0.875rem, 0.82rem + 0.16vw, 0.94rem) !important;
  line-height: 1.45 !important;
  color: rgba(245, 240, 232, 0.76) !important;
}

:is(.footer__copy, .footer__links a, .page--hochzeit .footer__credit, .page--hochzeit .footer__credit a) {
  font-size: clamp(0.875rem, 0.82rem + 0.12vw, 0.95rem) !important;
  line-height: 1.55 !important;
  color: rgba(245, 240, 232, 0.78) !important;
}

.footer__links a:hover,
.page--hochzeit .footer__credit a:hover {
  color: var(--gold-light, #d4b06a) !important;
}

:is(.btn, .map-consent-placeholder__btn, .cookie-banner__btn, .video-embed__btn, .footer__links a, a[href^="tel:"], a[href^="mailto:"]) {
  min-height: 44px !important;
  min-width: 44px !important;
}

.btn {
  font-size: clamp(0.875rem, 0.82rem + 0.14vw, 0.94rem) !important;
}

:is(.hero__cta .btn, .speisekarte__back .btn, .hochzeit-cta__actions .btn, .page--hochzeit .btn, .wedding-teaser .btn.btn--primary) {
  font-size: clamp(0.875rem, 0.82rem + 0.14vw, 0.94rem) !important;
}

.contact__item a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--green-dark, #0b2417);
}

.menu-block__items li,
.speisekarte .menu-block__items li {
  gap: clamp(0.55rem, 1.2vw, 0.9rem) !important;
  padding-top: max(0.62rem, 0.55rem) !important;
  padding-bottom: max(0.62rem, 0.55rem) !important;
}

.mi__name,
.speisekarte .mi__name {
  font-size: clamp(1rem, 0.96rem + 0.16vw, 1.08rem) !important;
  line-height: 1.38 !important;
}

.mi__name small,
.speisekarte .mi__name small,
.menu-block__items small {
  font-size: clamp(0.875rem, 0.82rem + 0.12vw, 0.94rem) !important;
  line-height: 1.45 !important;
  color: rgba(245, 240, 232, 0.72) !important;
  opacity: 1 !important;
}

.mi__price,
.speisekarte .mi__price {
  font-size: clamp(1rem, 0.96rem + 0.16vw, 1.08rem) !important;
  color: #e2c56f !important;
  text-align: right !important;
}

.mi__price em {
  font-size: clamp(0.94rem, 0.9rem + 0.12vw, 1rem) !important;
  color: rgba(245, 240, 232, 0.82) !important;
}

.menu-hero__meta,
.menu-footer__label,
.speisekarte__note,
.video-embed__caption,
.hochzeit-hero__credit,
.wedding-teaser__credit {
  font-size: clamp(0.875rem, 0.82rem + 0.1vw, 0.94rem) !important;
}

.menu-hero__meta {
  font-size: 14px !important;
}

.wedding-teaser .hochzeit-hero__subtitle,
.page--hochzeit .hochzeit-hero__subtitle {
  color: rgba(255,255,255,0.94) !important;
  text-shadow: 0 2px 22px rgba(0,0,0,0.42) !important;
}

#speisen,
.footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

#speisen > .container,
.footer > .container,
#speisen > .section__number {
  position: relative;
  z-index: 1;
}

.nature-line {
  position: absolute;
  inset-inline: 0;
  pointer-events: none;
  fill: none;
  z-index: 0;
}

.nature-line--water {
  top: -1px;
  height: clamp(4.5rem, 9vw, 7.5rem);
  stroke: rgba(212, 176, 106, 0.1);
  stroke-width: 1.1;
}

.nature-line--water path + path {
  stroke: rgba(245, 240, 232, 0.055);
}

.nature-line--mountain {
  bottom: -0.5rem;
  height: clamp(5.5rem, 12vw, 9rem);
  stroke: rgba(212, 176, 106, 0.075);
  stroke-width: 1;
}

.nature-line--mountain path + path {
  stroke: rgba(245, 240, 232, 0.045);
}

@media (max-width: 720px) {
  :is(.alpine-live__kicker, .alpine-live__label) {
    font-size: 0.8125rem !important;
  }

  .menu-hero__meta {
    font-size: 13px !important;
    letter-spacing: 0.16em !important;
  }

  .menu-block__items li,
  .speisekarte .menu-block__items li {
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: start !important;
  }

  .mi__dots {
    display: none !important;
  }

  .contact__item a,
  .speisekarte__back .btn,
  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* === REMOVE PAGE NUMBERING === */
:is(.section__number, .menu-block__num, .hochzeit-service__num) {
  display: none !important;
}

/* === Wetter-Pille zentriert im Hero (wie ursprüngliche Version) === */
.alpine-live {
  top: auto !important;
  bottom: clamp(5.5rem, 12vh, 8rem) !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  z-index: 5 !important;
}

@keyframes alpineLiveFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@media (max-width: 720px) {
  .alpine-live {
    top: auto !important;
    bottom: clamp(5rem, 14vh, 7rem) !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }
}

/* === Wetter als Karte (wie Screenshot): LIVE-WETTER · Icon+Temp · Jetzt in Lech === */
.alpine-live.alpine-live--card {
  position: absolute !important;
  top: clamp(5.5rem, 13vh, 8rem) !important;
  right: clamp(1rem, 3vw, 3rem) !important;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
  z-index: 5 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.55rem !important;
  padding: 1.1rem 1.9rem !important;
  background: rgba(11, 36, 23, 0.55) !important;
  border: 1px solid rgba(212, 176, 106, 0.4) !important;
  border-radius: 14px !important;
  -webkit-backdrop-filter: blur(14px) saturate(140%) !important;
  backdrop-filter: blur(14px) saturate(140%) !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22) !important;
  text-align: center !important;
  white-space: nowrap !important;
}

.alpine-live--card .alpine-live__kicker {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.34em !important;
  text-transform: uppercase !important;
  color: var(--gold-light, #d4b06a) !important;
  line-height: 1 !important;
}

.alpine-live--card .alpine-live__main {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.55rem !important;
  line-height: 1 !important;
}

.alpine-live--card .alpine-live__icon {
  font-size: 1.5rem !important;
  line-height: 1 !important;
  filter: saturate(1.1);
}

.alpine-live--card .alpine-live__value {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-style: italic !important;
  font-size: 1.7rem !important;
  font-weight: 600 !important;
  color: #fffaf0 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
}

.alpine-live--card .alpine-live__place {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 0.66rem !important;
  letter-spacing: 0.3em !important;
  text-transform: uppercase !important;
  color: rgba(247, 243, 235, 0.72) !important;
  line-height: 1 !important;
}

/* alte Pill-Reste deaktivieren */
.alpine-live--card .alpine-live__divider,
.alpine-live--card .alpine-live__label:not(.alpine-live__place),
.alpine-live--card .alpine-live__dot,
.alpine-live--card .alpine-live__row { display: none !important; }

/* Source-Text (MET Norway / CC BY 4.0) klein und auf engen Screens ausblenden */
.alpine-live--card .alpine-live__source {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 0.58rem !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
  color: rgba(247, 243, 235, 0.55) !important;
  margin-top: 0.35rem !important;
  line-height: 1 !important;
}
.alpine-live--card .alpine-live__source a {
  color: inherit !important;
  text-decoration: none !important;
  border-bottom: 1px dotted rgba(247, 243, 235, 0.3);
}
@media (max-width: 900px) {
  .alpine-live--card .alpine-live__source { display: none !important; }
}

@media (max-width: 1100px) {
  .alpine-live.alpine-live--card {
    padding: 0.85rem 1.25rem !important;
    gap: 0.4rem !important;
  }
  .alpine-live--card .alpine-live__kicker { font-size: 0.6rem !important; letter-spacing: 0.26em !important; }
  .alpine-live--card .alpine-live__icon { font-size: 1.15rem !important; }
  .alpine-live--card .alpine-live__value { font-size: 1.25rem !important; }
  .alpine-live--card .alpine-live__place { font-size: 0.56rem !important; letter-spacing: 0.22em !important; }
}
@media (max-width: 720px) {
  .alpine-live.alpine-live--card {
    top: clamp(4.5rem, 11vh, 6rem) !important;
    padding: 0.7rem 1rem !important;
    gap: 0.35rem !important;
  }
  .alpine-live--card .alpine-live__kicker { font-size: 0.55rem !important; letter-spacing: 0.22em !important; }
  .alpine-live--card .alpine-live__icon { font-size: 1rem !important; }
  .alpine-live--card .alpine-live__value { font-size: 1.1rem !important; }
  .alpine-live--card .alpine-live__place { font-size: 0.5rem !important; letter-spacing: 0.18em !important; }
}

/* === WEATHER OBEN-RECHTS auf großen Screens === */
@media (min-width: 901px) {
  .hero .alpine-live.alpine-live--card {
    position: absolute !important;
    top: clamp(5.5rem, 13vh, 8.5rem) !important;
    right: clamp(2rem, 3.5vw, 4rem) !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    z-index: 82 !important;
    padding: 0.95rem 1.4rem !important;
    gap: 0.5rem !important;
    border-radius: 14px !important;
  }

  .hero .alpine-live--card .alpine-live__kicker {
    font-size: 0.68rem !important;
    letter-spacing: 0.3em !important;
  }

  .hero .alpine-live--card .alpine-live__icon {
    font-size: 1.35rem !important;
  }

  .hero .alpine-live--card .alpine-live__value {
    font-size: 1.55rem !important;
  }

  .hero .alpine-live--card .alpine-live__place {
    font-size: 0.62rem !important;
    letter-spacing: 0.26em !important;
  }
}

/* === FIX: keine Silbentrennung / abgeschnittene Wörter (z. B. "Was-ser") === */
.section__title,
.section__title--display,
.hero__title,
.hero__title em,
.menu-hero__title,
.hochzeit-hero__title,
.wedding-teaser .section__title,
.wedding-teaser .section__title--display,
.pullquote__text,
.section__eyebrow,
.hero__eyebrow,
.hero__subtitle,
.menu-hero__subtitle,
.hochzeit-hero__subtitle,
h1, h2, h3,
.nav__logo-primary,
.nav__logo-secondary {
  -webkit-hyphens: none !important;
  -moz-hyphens: none !important;
  -ms-hyphens: none !important;
  hyphens: none !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
}

/* =============================================
   MOBILE-FIXES: Topbar/Nav, Wetter-Karte, Kontakt
   ============================================= */
@media (max-width: 720px) {
  /* --- Topbar: kompakt, max. 2 ruhige Zeilen, Safe-Area beachten --- */
  .topbar {
    padding-top: env(safe-area-inset-top, 0px) !important;
  }
  .topbar__inner {
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: baseline !important;
    gap: 0.2rem 1rem !important;
    row-gap: 0.2rem !important;
    padding: 0.45rem 1rem !important;
  }
  .topbar__group { gap: 0.4rem !important; }
  .topbar__label { font-size: 0.52rem !important; letter-spacing: 0.18em !important; }
  .topbar__value { font-size: 0.68rem !important; }
  .topbar__group + .topbar__group::before { display: none !important; }

  /* Nav sitzt sauber UNTER der (max. 2-zeiligen) Topbar – nur Startseite */
  body:not(.legal-page):not(.page--hochzeit):not(.page--menu):not(.is-scrolled) .nav {
    top: calc(env(safe-area-inset-top, 0px) + 4.6rem) !important;
  }
  /* Beim Scrollen: Topbar weg, Nav ganz nach oben */
  body:not(.legal-page):not(.page--hochzeit):not(.page--menu).is-scrolled .nav,
  body:not(.legal-page):not(.page--hochzeit):not(.page--menu) .nav.js-sticky {
    top: 0 !important;
  }

  /* --- Wetter-Karte: oben rechts unter der Nav, kein Overlap mit CTAs --- */
  .hero .alpine-live.alpine-live--card,
  .alpine-live.alpine-live--card {
    position: absolute !important;
    top: calc(env(safe-area-inset-top, 0px) + 8.5rem) !important;
    right: 0.9rem !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.35rem !important;
    padding: 0.7rem 1rem !important;
    border-radius: 12px !important;
    z-index: 6 !important;
  }
  .alpine-live--card .alpine-live__kicker {
    font-size: 0.52rem !important;
    letter-spacing: 0.22em !important;
  }
  .alpine-live--card .alpine-live__main { gap: 0.4rem !important; }
  .alpine-live--card .alpine-live__icon { font-size: 1.15rem !important; }
  .alpine-live--card .alpine-live__value { font-size: 1.25rem !important; }
  .alpine-live--card .alpine-live__place {
    font-size: 0.5rem !important;
    letter-spacing: 0.2em !important;
  }

  /* --- Kontakt: alles linksbündig, keine zentrierten Links --- */
  .contact__item {
    align-items: flex-start !important;
    text-align: left !important;
  }
  .contact__item > div { width: 100%; }
  .contact__item p,
  .contact__item strong,
  .contact__note {
    text-align: left !important;
  }
  .contact__item a {
    display: inline-flex !important;
    width: auto !important;
    max-width: 100% !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }
}

/* =============================================
   FIX: Legal-Seiten (Impressum/Datenschutz/AGB)
   Nav bündig oben – kein weißer Balken beim Laden
   (Legal-Seiten haben keine Topbar -> top:0 in jedem Zustand)
   ============================================= */
body.legal-page .nav,
body.legal-page .nav.js-sticky,
body.legal-page .nav.scrolled,
body.legal-page:not(.is-scrolled) .nav,
body.legal-page.is-scrolled .nav {
  top: 0 !important;
}

/* =============================================
   Navbar schlanker – gleiche (geringere) Höhe in
   allen Zuständen (Default, Sticky, Legal, Subpages)
   ============================================= */
.nav,
.nav.js-sticky,
.nav.scrolled,
body.is-scrolled .nav,
body.legal-page .nav,
body.legal-page .nav.js-sticky,
body.page--hochzeit .nav,
body.page--hochzeit .nav.js-sticky,
body.page--menu .nav,
body.page--menu .nav.js-sticky {
  padding-top: 0.55rem !important;
  padding-bottom: 0.55rem !important;
}

.nav__logo-text { gap: 0.04rem !important; }
.nav__logo-primary { font-size: 1.05rem !important; letter-spacing: 0.14em !important; line-height: 1 !important; }
.nav__logo-secondary { font-size: 0.62rem !important; line-height: 1 !important; }
.nav__logo-icon { width: 30px !important; }

@media (max-width: 720px) {
  .nav,
  .nav.js-sticky,
  .nav.scrolled,
  body.is-scrolled .nav,
  body.legal-page .nav,
  body.legal-page .nav.js-sticky,
  body.page--hochzeit .nav,
  body.page--menu .nav {
    padding-top: 0.45rem !important;
    padding-bottom: 0.45rem !important;
  }
  .nav__logo-primary { font-size: 0.95rem !important; }
  .nav__logo-secondary { font-size: 0.58rem !important; }
  .nav__logo-icon { width: 26px !important; }
}

/* =============================================
   Logo-Zweitzeile „Restaurant Fischerwirt" etwas größer
   ============================================= */
.nav__logo-secondary { font-size: 0.78rem !important; letter-spacing: 0.06em !important; }
@media (max-width: 720px) {
  .nav__logo-secondary { font-size: 0.66rem !important; }
}

/* =============================================
   "Sechs gute Gründe" – Aufteilung aufgeräumt:
   • alle Karten-Bilder exakt gleich hoch (kein Ausreißer)
   • letzte Karte (Feinkost) über die volle Breite,
     damit kein leerer Spalt im Grid bleibt
   ============================================= */
#services .service-card__icon:not(.service-card__icon--triptych),
#services .service-card__icon:not(.service-card__icon--triptych):has(img[src*="terrasse-see"]) {
  height: 240px !important;
  min-height: 240px !important;
}
#services .service-card__icon:not(.service-card__icon--triptych) img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 50% !important;
}
/* Desktop (6-Spalten-Grid): letzte Karte volle Breite */
@media (min-width: 1025px) {
  .services__grid > .service-card:nth-child(6) {
    grid-column: span 6 !important;
  }
}
@media (max-width: 768px) {
  #services .service-card__icon:not(.service-card__icon--triptych),
  #services .service-card__icon:not(.service-card__icon--triptych):has(img[src*="terrasse-see"]) {
    height: 200px !important;
    min-height: 200px !important;
  }
}

/* =============================================
   Instagram-Link im Kontakt klar als klickbar
   ============================================= */
.contact__item a[href*="instagram"] {
  display: inline !important;
  width: auto !important;
  max-width: 100% !important;
  min-height: 0 !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
  color: var(--gold-deep, #8a6a1f) !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
  text-decoration-thickness: 2px !important;
  letter-spacing: 0.01em;
  transition: color 200ms ease;
}
/* Kontaktspalten dürfen schrumpfen -> nichts ragt in die Nachbarspalte */
#contact .contact__details { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
#contact .contact__item,
#contact .contact__item > div { min-width: 0 !important; }
#contact .contact__item p { overflow-wrap: anywhere !important; }
.contact__item a[href*="instagram"]::before {
  content: "↗";
  display: inline-block;
  margin-right: 0.35rem;
  font-weight: 700;
  text-decoration: none;
}
.contact__item a[href*="instagram"]:hover,
.contact__item a[href*="instagram"]:focus-visible {
  color: var(--gold, #c9a84c) !important;
}

/* =============================================
   KONTAKT komplett neu angeordnet
   – Details in vollbreitem, mitwachsendem Raster
   – Karte volle Breite darunter
   – kein Quetschen / kein Überlappen mehr
   ============================================= */
#contact .container { max-width: 1200px !important; }
#contact .contact__grid {
  display: block !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}
#contact .contact__info {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  max-width: none !important;
}
#contact .section__title,
#contact .section__title--display {
  order: 1 !important;
  margin: 0 0 clamp(0.85rem, 1.6vw, 1.35rem) !important;
}
#contact .section__eyebrow {
  order: 2 !important;
  align-self: flex-start !important;
  margin: 0 !important;
}
#contact .contact__details {
  order: 3 !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
  gap: 1.75rem 3rem !important;
  margin-top: 1.75rem !important;
}
#contact .contact__item {
  display: block !important;
  min-width: 0 !important;
}
#contact .contact__item > div { width: 100% !important; }
#contact .contact__item strong { margin-bottom: 0.4rem !important; }
#contact .contact__item p,
#contact .contact__note {
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}
#contact .contact__note { margin-top: 0.5rem !important; }
#contact .contact__map {
  width: 100% !important;
  margin-top: clamp(2rem, 4vw, 3rem) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
}
#contact .contact__map iframe {
  width: 100% !important;
  height: clamp(340px, 40vw, 500px) !important;
  display: block !important;
  border: 0 !important;
}
/* Grünes Consent-Feld nie anzeigen */
#contact .map-consent-placeholder,
.contact__map .map-consent-placeholder {
  display: none !important;
}
/* Keine Zustimmung -> Karte (iframe ohne src) nicht laden,
   Kartenblock komplett ausblenden statt leeres Feld zu zeigen */
#contact .contact__map:not(:has(iframe[src])) {
  display: none !important;
}
@media (max-width: 560px) {
  #contact .contact__details {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

/* =============================================
   FOOTER neu angeordnet – ausgewogen statt leer
   Zeile 1: Marke links · Rechtslinks rechts
   Trennlinie · Zeile 2: Copyright zentriert
   ============================================= */
.footer {
  padding: clamp(2.25rem, 4vw, 3.25rem) 0 clamp(2rem, 3vw, 2.75rem) !important;
}
.footer > .container { max-width: 1240px !important; }
.footer__inner {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: center !important;
  column-gap: 2rem !important;
  row-gap: 1.4rem !important;
  text-align: left !important;
  flex-wrap: nowrap !important;
}
.footer__brand {
  grid-column: 1 !important;
  grid-row: 1 !important;
  font-size: 1.15rem !important;
  gap: 0.6rem !important;
}
.footer__links {
  grid-column: 2 !important;
  grid-row: 1 !important;
  justify-self: end !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-end !important;
  gap: 0.6rem 1.75rem !important;
}
.footer__links a {
  font-size: 0.82rem !important;
  letter-spacing: 0.06em !important;
}
.footer__copy {
  grid-column: 1 / -1 !important;
  grid-row: 2 !important;
  margin: 0 !important;
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.10) !important;
  text-align: center !important;
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.45) !important;
}
@media (max-width: 720px) {
  .footer__inner {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
    row-gap: 1.1rem !important;
  }
  .footer__brand { grid-column: 1 !important; grid-row: 1 !important; justify-self: center !important; }
  .footer__links {
    grid-column: 1 !important;
    grid-row: 2 !important;
    justify-self: center !important;
    justify-content: center !important;
    gap: 0.6rem 1.4rem !important;
  }
  .footer__copy { grid-column: 1 !important; grid-row: 3 !important; }
}

#services .service-card__icon--triptych {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  gap: clamp(0.55rem, 0.9vw, 0.85rem) !important;
  width: 100% !important;
  height: clamp(340px, 31vw, 470px) !important;
  min-height: clamp(340px, 31vw, 470px) !important;
  margin: 0 !important;
  padding: clamp(0.55rem, 0.9vw, 0.85rem) !important;
  border-radius: 0 !important;
  background: rgba(250, 248, 243, 0.88) !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

#services .service-card__icon--triptych .service-card__photo {
  display: block !important;
  min-width: 0 !important;
  height: 100% !important;
  overflow: hidden !important;
  background: transparent !important;
}

#services .service-card__icon--triptych .service-card__photo img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  border: none !important;
  border-radius: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
  opacity: 1 !important;
  transform: none !important;
  background: transparent !important;
}

#services .service-card__icon--triptych .service-card__photo:nth-child(1) img {
  object-position: center 58% !important;
}

#services .service-card__icon--triptych .service-card__photo:nth-child(2) img {
  object-position: center 62% !important;
}

@media (max-width: 720px) {
  #services .service-card__icon--triptych {
    display: flex !important;
    flex-direction: row !important;
    height: clamp(300px, 92vw, 430px) !important;
    min-height: clamp(300px, 92vw, 430px) !important;
    gap: 0.65rem !important;
    padding: 0.65rem !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    background: rgba(250, 248, 243, 0.92) !important;
  }

  #services .service-card__icon--triptych .service-card__photo {
    flex: 0 0 78% !important;
    height: 100% !important;
    scroll-snap-align: center !important;
  }

  #services .service-card__icon--triptych .service-card__photo img {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: auto !important;
  }

  #services .service-card__icon--triptych .service-card__photo:nth-child(3) {
    grid-column: auto !important;
  }

  #services .service-card__icon--triptych::-webkit-scrollbar {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .services__grid > .service-card:nth-child(3) {
    grid-column: span 6 !important;
  }

  .services__grid > .service-card:nth-child(4),
  .services__grid > .service-card:nth-child(5) {
    grid-column: span 3 !important;
  }
}

@media (min-width: 721px) and (max-width: 1024px) {
  .services__grid > .service-card:nth-child(3) {
    grid-column: span 4 !important;
  }

  #services .service-card__icon--triptych {
    height: clamp(320px, 42vw, 430px) !important;
    min-height: clamp(320px, 42vw, 430px) !important;
  }
}

.hero__overlay {
  background:
    radial-gradient(ellipse at 50% 62%,
      rgba(6, 18, 12, 0.44) 0%,
      rgba(6, 18, 12, 0.30) 28%,
      rgba(6, 18, 12, 0.08) 54%,
      rgba(6, 18, 12, 0) 72%),
    linear-gradient(180deg,
      rgba(13, 43, 26, 0.48) 0%,
      rgba(13, 43, 26, 0.18) 20%,
      rgba(13, 43, 26, 0.16) 48%,
      rgba(13, 43, 26, 0.46) 78%,
      rgba(13, 43, 26, 0.68) 100%) !important;
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.96) !important;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.82),
    0 1px 3px rgba(0, 0, 0, 0.72) !important;
}

/* =============================================
   Nav exakt unter der Topbar – bei JEDER Breite
   (JS misst die echte Topbar-Höhe -> --ft-topbar-h;
   verhindert Logo/Topbar-Überlappung, z. B. ~768px,
   wenn die Topbar 2-zeilig wird)
   ============================================= */
body:not(.legal-page):not(.page--hochzeit):not(.page--menu):not(.is-scrolled) .nav,
body:not(.legal-page):not(.page--hochzeit):not(.page--menu):not(.is-scrolled) .nav.js-sticky:not(.is-sticky) {
  top: var(--ft-topbar-h, 36px) !important;
}

/* =============================================
   Terrasse-Triptychon – robust & browser-gleich
   (Fix: justify-items war "center" -> Fotos füllten
   ihre Spalten nicht in Chrome; Höhe wurde von alter
   :has-Regel auf 240px gezwungen)
   ============================================= */
#services .service-card__icon--triptych {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  grid-auto-rows: 1fr !important;
  gap: 0.6rem !important;
  width: 100% !important;
  height: clamp(320px, 30vw, 460px) !important;
  min-height: clamp(320px, 30vw, 460px) !important;
  padding: 0.6rem !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  overflow: hidden !important;
  align-items: stretch !important;
  justify-items: stretch !important;
  place-items: stretch !important;
}
#services .service-card__icon--triptych > * {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  align-self: stretch !important;
  justify-self: stretch !important;
}
#services .service-card__icon--triptych > * img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  object-fit: cover !important;
  object-position: center 58% !important;
}
@media (max-width: 720px) {
  #services .service-card__icon--triptych {
    grid-template-columns: 1fr !important;
    height: clamp(280px, 64vw, 400px) !important;
    min-height: clamp(280px, 64vw, 400px) !important;
  }
}

/* Gerichtsfotos mit wichtigem Motiv sauber fokussieren */
#services .service-card__icon img[src*="regionale-kueche"] {
  object-fit: cover !important;
  object-position: center 66% !important;
  background: transparent !important;
  padding: 0 !important;
}

#services .service-card:has(img[src*="regionale-kueche"]) .service-card__icon {
  height: clamp(270px, 24vw, 390px) !important;
  min-height: clamp(270px, 24vw, 390px) !important;
}

.dish__note--singleline {
  white-space: nowrap !important;
  letter-spacing: 0.13em !important;
  font-size: clamp(0.62rem, 0.85vw, 0.72rem) !important;
}

#speisen .dish img {
  object-position: center center !important;
}

#speisen .dish img[src*="teller-3-raeucherforelle"] {
  object-position: center 45% !important;
}

/* Terrasse: Motive ruhiger zentrieren, Desktop und Mobile */
#services .service-card__icon--triptych > .service-card__photo:nth-child(1) img {
  object-position: center 54% !important;
}

#services .service-card__icon--triptych > .service-card__photo:nth-child(2) img {
  object-position: center 50% !important;
}

@media (min-width: 721px) {
  #services .service-card__icon--triptych {
    height: clamp(360px, 33vw, 500px) !important;
    min-height: clamp(360px, 33vw, 500px) !important;
  }
}

@media (max-width: 720px) {
  #services .service-card__icon--triptych {
    height: auto !important;
    min-height: 0 !important;
  }

  #services .service-card__icon--triptych > .service-card__photo {
    aspect-ratio: 4 / 3 !important;
  }

  #services .service-card__icon--triptych > .service-card__photo:nth-child(1) img {
    object-position: center 56% !important;
  }

  #services .service-card__icon--triptych > .service-card__photo:nth-child(2) img {
    object-position: center 52% !important;
  }
}

/* Terrasse final: Fotos in jeder Ansicht vollständig zeigen */
#services .service-card__icon--triptych {
  height: auto !important;
  min-height: 0 !important;
  grid-auto-rows: auto !important;
  align-items: start !important;
  background: transparent !important;
  overflow: visible !important;
}

#services .service-card__icon--triptych > .service-card__photo {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  background: transparent !important;
}

#services .service-card__icon--triptych > .service-card__photo:nth-child(1) {
  aspect-ratio: 3 / 4 !important;
}

#services .service-card__icon--triptych > .service-card__photo:nth-child(2) {
  aspect-ratio: 681 / 1024 !important;
}

#services .service-card__icon--triptych > .service-card__photo img,
#services .service-card__icon--triptych > .service-card__photo:nth-child(1) img,
#services .service-card__icon--triptych > .service-card__photo:nth-child(2) img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: contain !important;
  object-position: center center !important;
}

@media (max-width: 720px) {
  #services .service-card__icon--triptych {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
    padding: 0 !important;
  }

  #services .service-card__icon--triptych > .service-card__photo {
    width: 100% !important;
  }
}

/* =============================================
   Terrasse-Karte: volle Breite (wie im Screenshot),
   ABER nur zwei Fotos statt drei – beide groß und
   randlos nebeneinander, gleich groß
   ============================================= */
/* Terrasse-Karte spannt wieder über die volle Grid-Breite */
@media (min-width: 1025px) {
  .services__grid > .service-card:nth-child(3) {
    grid-column: span 6 !important;
  }
  .services__grid > .service-card:nth-child(4),
  .services__grid > .service-card:nth-child(5) {
    grid-column: span 3 !important;
  }
}
@media (min-width: 721px) and (max-width: 1024px) {
  .services__grid > .service-card:nth-child(3) {
    grid-column: span 4 !important;
  }
}

/* Triptychon -> editoriales Diptychon (asymmetrisch, feiner) */
#services .service-card__icon--triptych {
  display: grid !important;
  grid-template-columns: 1.45fr 1fr !important;
  grid-auto-rows: 1fr !important;
  gap: clamp(0.5rem, 0.9vw, 0.9rem) !important;
  padding: clamp(0.5rem, 0.9vw, 0.9rem) !important;
  width: 100% !important;
  height: clamp(320px, 28vw, 440px) !important;
  min-height: clamp(320px, 28vw, 440px) !important;
  margin: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  align-items: stretch !important;
  justify-items: stretch !important;
  place-items: stretch !important;
}
/* Drittes Foto ausblenden – zwei genügen */
#services .service-card__icon--triptych > *:nth-child(n+3) {
  display: none !important;
}
/* Die zwei Fotos füllen ihre Spalten randlos, mit weicher Rundung */
#services .service-card__icon--triptych > *:nth-child(-n+2) {
  display: block !important;
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 6px !important;
  box-shadow: 0 1px 0 rgba(13, 43, 26, 0.06), 0 12px 28px rgba(13, 43, 26, 0.08) !important;
  align-self: stretch !important;
  justify-self: stretch !important;
  isolation: isolate !important;
}
#services .service-card__icon--triptych > *:nth-child(-n+2) img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  object-fit: cover !important;
  object-position: center 55% !important;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 700ms ease !important;
  will-change: transform;
}
/* Sanft unterschiedliche Ausschnitte je Bild (editoriale Variation) */
#services .service-card__icon--triptych > *:nth-child(1) img {
  object-position: center 58% !important;
}
#services .service-card__icon--triptych > *:nth-child(2) img {
  object-position: center 50% !important;
}
/* Weicher Hover-Zoom auf den jeweiligen Bildkachel */
@media (hover: hover) {
  #services .service-card__icon--triptych > *:nth-child(-n+2):hover img {
    transform: scale(1.035) !important;
  }
}
/* Mobile: zwei Fotos NEBENEINANDER (statt gestapelt), kompakte Höhe */
@media (max-width: 720px) {
  #services .service-card__icon--triptych {
    grid-template-columns: 1fr 1fr !important;
    grid-auto-rows: 1fr !important;
    height: clamp(180px, 46vw, 240px) !important;
    min-height: clamp(180px, 46vw, 240px) !important;
    gap: 6px !important;
    padding: 6px !important;
  }
  #services .service-card__icon--triptych > *:nth-child(-n+2) {
    height: 100% !important;
  }
}

/* Hero-Bild: maximal scharfe Darstellung (browserseitiges Rendering optimieren,
   <picture> liefert auf Handy bereits eine portrait-optimierte Variante) */
.hero__media {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* =============================================
   Gastgeber-Seite (Familie Mittermayr)
   ============================================= */
.gastgeber-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: 0.75rem;
}
.gastgeber-content .legal-intro {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--gold-deep, #8a6a1f);
  max-width: 38rem;
  margin-bottom: 2.5rem;
}
.gastgeber-content section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep, #8a6a1f);
  margin-top: 2.25rem;
  margin-bottom: 0.7rem;
}
.gastgeber-content section p {
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.7;
}
/* Gastgeber-Porträt (Familie Mittermayr) */
.gastgeber-photo {
  margin: 2.5rem auto 0.5rem;
  width: min(100%, 460px);
  text-align: center;
}
.gastgeber-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(183, 141, 60, 0.4);
  box-shadow: 0 18px 45px rgba(11, 36, 23, 0.18);
}
.gastgeber-photo figcaption {
  margin-top: 0.85rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(11, 36, 23, 0.6);
}
@media (max-width: 600px) {
  .gastgeber-photo { width: 100%; margin-top: 2rem; }
  .gastgeber-photo figcaption { font-size: 0.7rem; letter-spacing: 0.14em; }
}

.gastgeber-promise {
  margin: 2.75rem 0 2.25rem !important;
  padding: 1.75rem clamp(1rem, 3vw, 2rem);
  border-top: 1px solid rgba(183, 141, 60, 0.35);
  border-bottom: 1px solid rgba(183, 141, 60, 0.35);
  text-align: center;
}
.gastgeber-promise__text {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.5;
  color: var(--green-dark, #0b2417);
  margin: 0;
}
.gastgeber-greeting {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--green-dark, #0b2417);
}
.gastgeber-signature {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep, #8a6a1f);
  margin: 0 0 2.5rem;
  line-height: 1.35;
}
.gastgeber-signature span {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 0.85em;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(13, 43, 26, 0.7);
  display: inline-block;
  margin-top: 0.25rem;
}
.gastgeber-back {
  margin-top: 2.5rem;
  text-align: left;
}

/* =============================================
   Mobile: Fotos sauber zentrieren – nichts mehr
   abgeschnitten (höhere Boxen + Subjekt-Fokus)
   ============================================= */
@media (max-width: 768px) {
  /* Speisen-Tiles: mehr Höhe, damit Hochformat-Fotos
     nicht oben/unten weggeschnitten werden */
  .dish { height: clamp(380px, 80vw, 460px) !important; }
  .dish img {
    object-fit: cover !important;
    object-position: center 50% !important;
  }
  /* Subjekt-Fokus je Foto (zentriert auf das Motiv) */
  .dish img[src*="teller-1-stoer"] { object-position: center 55% !important; }   /* Koch + Stör */
  .dish img[src*="teller-2-fischplatte"] { object-position: center 50% !important; } /* Platte mittig */
  .dish img[src*="teller-3-raeucherforelle"] { object-position: center 50% !important; }
  .dish img[src*="teller-4-lachsforellenfilet"] { object-position: center 50% !important; }

  /* Restaurant-Foto im "Wo das Wasser noch erzählt"-Abschnitt:
     Motiv liegt im oberen Drittel des Hochformatbildes */
  #about .about__photo img { object-position: center 35% !important; }

  /* Pullquote-Hintergrund: ruhig zentriert */
  .pullquote__bg { object-position: center 45% !important; }

  /* Hochzeit-Hero auf Hochzeit-Seite: Brautpaar mittig */
  .hochzeit-hero__bg { object-position: center 30% !important; }

  /* Wedding-Teaser auf Startseite */
  .wedding-teaser__bg { object-position: center 35% !important; }

  /* Service-Card-Bilder (Fischen/Regionale/Kinderspielplatz/Einfach/Feinkost):
     gleichmäßig mittig, kein Beschnitt-Bias */
  #services .service-card__icon:not(.service-card__icon--triptych) img {
    object-position: center 50% !important;
  }
}

/* =============================================
   iOS Safe-Area: Nav deckt Notch/Status-Bar
   sauber mit – kein Inhalt-Durchscheinen mehr
   ============================================= */
/* Sticky-Nav (Startseite gescrollt) + Seiten ohne Topbar
   bekommen Safe-Area-Innenabstand oben.
   So füllt der cremefarbene Hintergrund auch den
   Notch-Bereich, statt einen Spalt zu lassen. */
body.is-scrolled .nav,
.nav.js-sticky,
body.legal-page .nav,
body.page--hochzeit .nav,
body.page--menu .nav,
body.page--gastgeber .nav {
  padding-top: calc(env(safe-area-inset-top, 0px) + 0.55rem) !important;
}
@media (max-width: 768px) {
  body.is-scrolled .nav,
  .nav.js-sticky,
  body.legal-page .nav,
  body.page--hochzeit .nav,
  body.page--menu .nav,
  body.page--gastgeber .nav {
    padding-top: calc(env(safe-area-inset-top, 0px) + 0.5rem) !important;
  }
  /* Sticky-Nav: nahezu deckend (Fotos schimmern nicht mehr durch) */
  .nav.js-sticky,
  body.is-scrolled .nav {
    background: rgba(245, 240, 232, 0.985) !important;
    box-shadow: 0 1px 0 rgba(13, 43, 26, 0.08), 0 8px 22px rgba(13, 43, 26, 0.10) !important;
  }
}

/* =============================================
   FINAL MOBILE IMAGE FIX
   - kein Blur hinter Bild-Captions
   - mobile Fotos nicht mehr verschoben/beschnitten
   ============================================= */
.about__photo figcaption,
.speisen__photo figcaption,
.menu-aside__photo figcaption,
.dish figcaption {
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  filter: none !important;
}

.about__photo figcaption {
  background: linear-gradient(180deg, rgba(11, 36, 23, 0), rgba(11, 36, 23, 0.78)) !important;
}

@media (max-width: 768px) {
  #about .about__photo,
  #services .service-card__icon,
  #services .service-card__icon--triptych,
  #services .service-card__icon--triptych > * {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
  }

  #about .about__photo img,
  #services .service-card__icon img,
  #services .service-card__icon--triptych > * img {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important;
  }

  #services .service-card__icon--triptych {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
    padding: 0 !important;
  }

  #services .service-card__icon--triptych > * {
    aspect-ratio: auto !important;
    border-radius: 6px !important;
  }

  #services .service-card__icon--triptych > * img {
    display: block !important;
  }
}

@media (max-width: 768px) {
  #services .service-card__icon:not(.service-card__icon--triptych),
  #services .service-card__icon:not(.service-card__icon--triptych):has(img) {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 4 / 3 !important;
    overflow: visible !important;
  }

  #services .service-card:has(img[src*="regionale-kueche"]) .service-card__icon {
    aspect-ratio: 3 / 4 !important;
  }

  #services .service-card__icon:not(.service-card__icon--triptych) img,
  #services .service-card__icon:not(.service-card__icon--triptych):has(img) img {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important;
  }
}

/* Mobile: Kaiserschmarrn ohne weiße Ränder, Teller bleibt im Fokus */
@media (max-width: 768px) {
  #services .service-card:has(img[src*="regionale-kueche"]) .service-card__icon {
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
    background: transparent !important;
  }

  #services .service-card:has(img[src*="regionale-kueche"]) .service-card__icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 68% !important;
    transform: none !important;
  }
}

/* =============================================
   EDGE / SAFARI HERO SYNC 2026-05-28
   ============================================= */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.hero {
  height: auto !important;
  min-height: 100svh !important;
  overflow: hidden !important;
}

@supports (height: 100dvh) {
  .hero { min-height: 100dvh !important; }
}

.hero picture,
.hero__media {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.hero__media,
.hero__media[class] {
  object-fit: cover !important;
  object-position: center 48% !important;
  transform: none !important;
  animation: none !important;
  image-rendering: auto !important;
}

.hero__content {
  width: min(100% - 2rem, 780px) !important;
  max-width: 780px !important;
  margin-inline: auto !important;
  padding-inline: clamp(1rem, 3vw, 2rem) !important;
  padding-top: clamp(7rem, 14vh, 10rem) !important;
}

.hero__subtitle {
  max-width: 760px !important;
  margin-inline: auto !important;
  font-size: clamp(1rem, 1.15vw, 1.22rem) !important;
  line-height: 1.46 !important;
  letter-spacing: 0 !important;
}

.hero__cta {
  display: flex !important;
  justify-content: center !important;
  gap: clamp(0.8rem, 1.4vw, 1.25rem) !important;
  flex-wrap: wrap !important;
}

.hero__cta .btn {
  min-height: 44px !important;
  min-width: clamp(190px, 15vw, 250px) !important;
  padding-inline: clamp(1.2rem, 2vw, 2.2rem) !important;
}

/* (Kein min-height aus --ft-topbar-h mehr — das erzeugte eine Rückkopplung,
   die die Topbar nach dem Verbreitern dauerhaft 2-zeilig-hoch hielt.) */

.topbar__inner {
  --tb-gap: clamp(1.1rem, 3vw, 3.4rem);
  width: min(100% - 2rem, 1180px) !important;
  max-width: 1180px !important;
  margin-inline: auto !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: var(--tb-gap) !important;
  flex-wrap: wrap !important;
  row-gap: 0.3rem !important;
}

/* Trennstrich exakt in die Mitte des Gaps setzen (skaliert mit --tb-gap),
   damit er bei schmalerem Abstand nicht in den Text rutscht. */
.topbar__group + .topbar__group::before {
  left: calc(var(--tb-gap, 1.75rem) / -2) !important;
}

.topbar__group,
.topbar__value {
  white-space: nowrap !important;
}

.nav:not(.js-sticky):not(.scrolled),
body:not(.legal-page):not(.page--hochzeit):not(.page--menu):not(.page--gastgeber):not(.is-scrolled) .nav {
  top: var(--ft-topbar-h, 36px) !important;
}

@media (min-width: 769px) {
  .nav__inner {
    width: min(100% - 2rem, 1320px) !important;
    max-width: 1320px !important;
    margin-inline: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: clamp(1.3rem, 2.4vw, 2.8rem) !important;
  }

  .nav__logo {
    flex: 0 0 auto !important;
    min-width: clamp(210px, 17vw, 275px) !important;
    white-space: nowrap !important;
  }

  .nav__logo-text,
  .nav__logo-primary,
  .nav__logo-secondary {
    white-space: nowrap !important;
    overflow-wrap: normal !important;
    word-break: keep-all !important;
  }

  .nav__logo-primary {
    font-size: clamp(0.94rem, 1vw, 1.08rem) !important;
    letter-spacing: 0.13em !important;
  }

  .nav__logo-secondary {
    font-size: clamp(0.62rem, 0.72vw, 0.78rem) !important;
  }

  .nav__links {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    display: flex !important;
    justify-content: center !important;
    gap: clamp(1.1rem, 2.6vw, 3.1rem) !important;
  }

  .nav__links a {
    font-size: clamp(0.76rem, 0.86vw, 0.94rem) !important;
    letter-spacing: clamp(0.16em, 0.25vw, 0.3em) !important;
    white-space: nowrap !important;
  }

  .nav__hamburger {
    flex: 0 0 auto !important;
  }
}

@media (min-width: 901px) {
  /* Pille in die obere rechte Ecke (über dem zentrierten Hero-Text),
     damit sie die Schrift NIE überdeckt. */
  .hero .alpine-live.alpine-live--card {
    top: clamp(5.5rem, 13vh, 8.5rem) !important;
    right: clamp(2rem, 3.5vw, 4rem) !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
  }
}
/* Sehr flache Fenster: kein Platz für die Pille ohne Textüberlappung → ausblenden */
@media (max-height: 620px) {
  .hero .alpine-live.alpine-live--card { display: none !important; }
}

@media (max-width: 1024px) {
  .topbar__inner {
    gap: clamp(0.8rem, 2vw, 1.6rem) !important;
  }

  .nav__inner {
    gap: clamp(0.9rem, 1.8vw, 1.6rem) !important;
  }

  .nav__links {
    gap: clamp(0.8rem, 1.8vw, 1.6rem) !important;
  }

  .nav__links a {
    font-size: clamp(0.7rem, 0.9vw, 0.82rem) !important;
    letter-spacing: 0.18em !important;
  }
}

@media (max-width: 820px) {
  .topbar__inner {
    flex-wrap: wrap !important;
    row-gap: 0.25rem !important;
  }
}

@media (max-width: 768px) {
  .hero__content {
    width: min(100% - 1.5rem, 560px) !important;
    padding-top: clamp(8rem, 18vh, 10rem) !important;
  }

  .hero__subtitle {
    font-size: clamp(0.86rem, 3.2vw, 1rem) !important;
    line-height: 1.45 !important;
  }

  .hero__cta .btn {
    width: min(100%, 320px) !important;
  }
}

@media (max-width: 430px) {
  .hero__media,
  .hero__media[class] {
    object-position: center center !important;
  }

  .hero__content {
    padding-inline: 0.75rem !important;
  }
}

/* Skip-Link in der sichtbaren Oberfläche komplett ausblenden */
.skip-link,
.skip-link:focus,
.skip-link:focus-visible {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* =============================================
   Hero-Spruch zweigeteilt (hervorgehoben + sekundär)
   ============================================= */
.hero__subtitle--lead {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  font-size: clamp(1.35rem, 2.6vw, 2.1rem) !important;
  line-height: 1.3 !important;
  letter-spacing: 0.005em !important;
  text-align: center !important;
  max-width: 38ch !important;
  margin: 0 auto 0.85rem !important;
  color: #ffffff !important;
  text-shadow: 0 2px 18px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.7);
}
.hero__subtitle--secondary {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  font-size: clamp(0.95rem, 1.35vw, 1.15rem) !important;
  line-height: 1.55 !important;
  text-align: center !important;
  max-width: 48ch !important;
  margin: 0 auto 1.6rem !important;
  color: rgba(255,255,255,0.92) !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55), 0 1px 2px rgba(0,0,0,0.65);
}

/* =============================================
   Willkommen: 3 Fließtext-Absätze ohne Bullets,
   Begriffe (Kulinarik/Fischen…/Familienzeit) in Gold + fett
   ============================================= */
.welcome-points {
  margin: 1.25rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 62ch;
}
.welcome-point {
  margin: 0;
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.6;
}
.welcome-accent {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 1.05em;
  letter-spacing: 0.08em;
  color: var(--gold, #c9a84c);
  text-transform: uppercase;
  margin-right: 0.35em;
}

/* =============================================
   About-Stats: alle drei Kästchen gleich hoch,
   visuell konsistent ausgerichtet
   ============================================= */
#about .about__stats {
  align-items: stretch !important;
}
#about .about__stats > .stat {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  min-height: clamp(140px, 14vw, 180px) !important;
  text-align: center !important;
  gap: 0.4rem !important;
}
#about .about__stats .stat--hours,
#about .about__stats .stat--hours-2 {
  align-items: center !important;
  text-align: center !important;
}
#about .about__stats .stat--hours .stat__heading,
#about .about__stats .stat--hours-2 .stat__heading {
  text-align: center !important;
}
#about .about__stats .stat--hours .stat__season,
#about .about__stats .stat--hours-2 .stat__season {
  text-align: center !important;
}
@media (max-width: 720px) {
  #about .about__stats > .stat { min-height: 130px !important; }
}

/* =============================================
   Wetter-Karte: dezente Quellenangabe (CC BY 4.0 – MET Norway)
   ============================================= */
.alpine-live--card .alpine-live__source {
  display: block;
  margin-top: 0.35rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.5);
  text-decoration: none;
  line-height: 1;
  transition: color 0.2s ease;
}
.alpine-live--card .alpine-live__source:hover {
  color: rgba(247, 243, 235, 0.8);
}
@media (max-width: 720px) {
  .alpine-live--card .alpine-live__source { font-size: 0.46rem; }
}

/* =============================================
   Navbar Desktop: Logo + Links sauber & kompakt
   zentriert (kein „schwimmendes" Logo mehr).
   3-Spalten-Raster 1fr/auto/1fr -> Links exakt
   mittig, Logo links, rechte Spalte als Ausgleich.
   ============================================= */
@media (min-width: 721px) {
  .nav .nav__inner,
  .nav.js-sticky .nav__inner {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    column-gap: 1rem !important;
    align-items: center !important;
  }
  .nav .nav__logo { grid-column: 1 !important; justify-self: start !important; }
  .nav .nav__links {
    grid-column: 2 !important;
    justify-self: center !important;
    gap: 1.5rem !important;
  }
  .nav .nav__links a,
  .nav.js-sticky .nav__links a {
    font-size: 0.82rem !important;
    letter-spacing: 0.13em !important;
  }
  /* Rechte Ausgleichsspalte (Hamburger ist hier ausgeblendet) */
  .nav .nav__hamburger { grid-column: 3 !important; justify-self: end !important; }
}

/* Final navbar alignment guard: keep the nav directly under the green topbar. */
body:not(.is-scrolled):not(.legal-page):not(.page--hochzeit):not(.page--menu):not(.page--gastgeber) .nav:not(.js-sticky) {
  top: var(--ft-topbar-h, 36px) !important;
}

@media (max-width: 720px) {
  body:not(.is-scrolled):not(.legal-page):not(.page--hochzeit):not(.page--menu):not(.page--gastgeber) .nav:not(.js-sticky) {
    top: var(--ft-topbar-h, 36px) !important;
  }
}

/* Final about stats layout: centered, calm and evenly spaced. */
#about .about__stats {
  width: min(100% - clamp(2rem, 6vw, 7rem), 1320px) !important;
  margin: clamp(4rem, 7vw, 6rem) auto 0 !important;
  padding-top: clamp(2rem, 4vw, 3rem) !important;
  border-top: 1px solid rgba(201, 168, 76, 0.22) !important;
  display: grid !important;
  grid-template-columns: minmax(220px, 0.82fr) minmax(320px, 1fr) minmax(320px, 1fr) !important;
  gap: 0 !important;
  align-items: stretch !important;
}

#about .about__stats > .stat {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: clamp(132px, 10vw, 168px) !important;
  padding: clamp(1.2rem, 2vw, 2rem) clamp(1.5rem, 3vw, 2.75rem) !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  text-align: center !important;
}

#about .about__stats > .stat:hover {
  background: transparent !important;
  transform: none !important;
}

#about .about__stats > .stat::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  width: 2px !important;
  height: clamp(86px, 8vw, 124px) !important;
  background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.96), transparent) !important;
  transform: translateY(-50%) !important;
  transition: none !important;
}

#about .about__stats > .stat::after {
  display: none !important;
}

#about .about__stats > .stat > * {
  opacity: 1 !important;
  transform: none !important;
}

#about .stat__number {
  margin: 0 0 0.65rem !important;
  font-size: clamp(2.7rem, 4vw, 3.7rem) !important;
  line-height: 0.95 !important;
  color: var(--gold) !important;
}

#about .stat__label {
  font-size: clamp(0.78rem, 0.9vw, 0.92rem) !important;
  letter-spacing: 0.18em !important;
  line-height: 1.25 !important;
  color: rgba(245, 240, 232, 0.7) !important;
  opacity: 1 !important;
}

#about .about__stats .stat--hours,
#about .about__stats .stat--hours-2 {
  align-items: center !important;
  gap: 0.55rem !important;
  text-align: center !important;
}

#about .about__stats .stat--hours .stat__heading,
#about .about__stats .stat--hours-2 .stat__heading {
  margin: 0 !important;
  max-width: 32ch !important;
  text-align: center !important;
  font-size: clamp(0.82rem, 0.92vw, 0.98rem) !important;
  letter-spacing: 0.16em !important;
  line-height: 1.1 !important;
}

#about .about__stats .stat--hours .stat__primary,
#about .about__stats .stat--hours-2 .stat__primary {
  width: auto !important;
  max-width: none !important;
  text-align: center !important;
  white-space: nowrap !important;
  font-size: clamp(1.35rem, 2vw, 2rem) !important;
  line-height: 1 !important;
  letter-spacing: 0.02em !important;
}

#about .about__stats .stat--hours .stat__season,
#about .about__stats .stat--hours-2 .stat__season {
  width: auto !important;
  max-width: 34ch !important;
  margin: 0.1rem auto 0 !important;
  text-align: center !important;
  font-size: clamp(0.78rem, 0.95vw, 1rem) !important;
  line-height: 1.35 !important;
  letter-spacing: 0.03em !important;
}

@media (max-width: 1040px) {
  #about .about__stats {
    grid-template-columns: 1fr !important;
    width: min(100% - 2rem, 620px) !important;
    padding-top: 1.75rem !important;
  }

  #about .about__stats > .stat {
    min-height: 120px !important;
  }

  #about .about__stats > .stat::before {
    top: 0 !important;
    left: 50% !important;
    width: min(220px, 64%) !important;
    height: 1px !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.76), transparent) !important;
  }

  #about .about__stats > .stat:first-child::before {
    display: none !important;
  }
}

/* Final hero CTA alignment: center letter-spaced labels optically and mechanically. */
.hero__cta .btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  line-height: 1 !important;
  text-indent: 0.18em !important;
}

/* =============================================
   NAVBAR RESPONSIVE FIX (final, überschreibt alle !important)
   Greift in beiden Zuständen: default + .js-sticky / .scrolled.
   ============================================= */
.nav__inner {
  flex-wrap: nowrap;
  gap: 1rem;
  min-width: 0;
}
.nav__logo { min-width: 0; flex-shrink: 1; }
.nav__links { flex-shrink: 1; min-width: 0; flex-wrap: nowrap; }

/* Desktop ≥ 1025 px: KEINE Schrumpfung mehr — Original-Größen bleiben.
   Die ehemalige 1025–1200 px Schrumpfstufe wurde entfernt, sie war zu klein.
   Unter 1024 px übernimmt das Hamburger-Menü. */

/* =====================================================================
   NAVBAR FINAL OVERRIDE — überschreibt JEDE vorherige Regel.
   Behaviour identisch in default + .js-sticky / .scrolled / .menu-open.
   ===================================================================== */
@media (max-width: 1100px) {
  /* Hamburger immer sichtbar (Schwelle 1100px: darüber genug Platz für
     seiten-zentrierte Links ohne Logo-Überlappung, auch auf Windows). */
  body .nav .nav__hamburger { display: flex !important; }

  /* Links GRUNDSÄTZLICH versteckt */
  body .nav .nav__links,
  body .nav.js-sticky .nav__links,
  body .nav.scrolled .nav__links {
    display: none !important;
  }

  /* Links NUR sichtbar wenn js-menu-open auf .nav gesetzt ist */
  body .nav.js-menu-open .nav__links,
  body .nav.menu-open .nav__links {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    height: 100svh !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(13, 43, 26, 0.97) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    backdrop-filter: blur(20px) !important;
    /* Abstand und Padding skalieren mit der Fensterhöhe */
    gap: clamp(0.6rem, 2.5vh, 2.5rem) !important;
    padding: clamp(2.5rem, 7vh, 4.5rem) 1.5rem !important;
    margin: 0 !important;
    z-index: 1000 !important;
    list-style: none !important;
    max-height: none !important;
    overflow-y: auto !important;
  }
  body .nav.js-menu-open .nav__links li,
  body .nav.menu-open .nav__links li {
    list-style: none !important;
    margin: 0 !important;
  }
  body .nav.js-menu-open .nav__links a,
  body .nav.menu-open .nav__links a {
    /* Schrift skaliert mit Fensterhöhe — passt sich an knappe Viewports an */
    font-size: clamp(1.1rem, 3vh, 2rem) !important;
    line-height: 1.1 !important;
    color: #f5f0e8 !important;
    padding: clamp(0.35rem, 1.2vh, 0.8rem) 1.25rem !important;
    text-align: center !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
  }
}

/* =====================================================================
   NAVBAR FLUID — Desktop ≥1025px bis Hamburger (1024px).
   Text, Logo, Gaps skalieren stufenlos mit der Fensterbreite (vw),
   damit die Links NIE ins Logo laufen — egal welche Breite.
   Gilt in beiden Zuständen (transparent + sticky).
   ===================================================================== */
@media (min-width: 1025px) {
  /* Links: Schrift + Abstand fenstergebunden */
  body .nav .nav__links {
    gap: clamp(0.7rem, 1.9vw, 3rem) !important;
    flex-wrap: nowrap !important;
    min-width: 0 !important;
  }
  body .nav .nav__links a,
  body .nav.js-sticky .nav__links a {
    font-size: clamp(0.66rem, 1.1vw, 1.2rem) !important;
    letter-spacing: clamp(0.06em, 0.4vw, 0.18em) !important;
    white-space: nowrap !important;
  }

  /* Logo: Schrift + Icon fenstergebunden */
  body .nav .nav__logo-primary,
  body .nav.js-sticky .nav__logo-primary {
    font-size: clamp(0.95rem, 1.25vw, 1.35rem) !important;
    letter-spacing: clamp(0.1em, 0.5vw, 0.18em) !important;
    white-space: nowrap !important;
  }
  body .nav .nav__logo-secondary,
  body .nav.js-sticky .nav__logo-secondary {
    font-size: clamp(0.6rem, 0.8vw, 0.78rem) !important;
    white-space: nowrap !important;
  }
  body .nav .nav__logo-icon,
  body .nav.js-sticky .nav__logo-icon {
    width: clamp(26px, 2.5vw, 38px) !important;
  }
  body .nav .nav__logo { flex-shrink: 0 !important; }
  body .nav .nav__inner { gap: clamp(0.75rem, 1.5vw, 1.75rem) !important; }
}

/* =====================================================================
   LOGO FLUID FINAL — Icon + Text skalieren über ALLE Fensterbreiten.
   Letzte Regel im File → überschreibt alle festen px/rem-Werte davor.
   ===================================================================== */
body .nav .nav__logo-primary,
body .nav.js-sticky .nav__logo-primary,
body .nav.scrolled .nav__logo-primary {
  font-size: clamp(0.8rem, 1.4vw, 1.7rem) !important;
  letter-spacing: clamp(0.08em, 0.45vw, 0.2em) !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}
body .nav .nav__logo-secondary,
body .nav.js-sticky .nav__logo-secondary,
body .nav.scrolled .nav__logo-secondary {
  font-size: clamp(0.55rem, 0.85vw, 0.95rem) !important;
  letter-spacing: 0.06em !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}
body .nav .nav__logo-icon,
body .nav.js-sticky .nav__logo-icon,
body .nav.scrolled .nav__logo-icon {
  width: clamp(24px, 2.9vw, 46px) !important;
  height: auto !important;
}
body .nav .nav__logo { flex-shrink: 0 !important; min-width: 0 !important; }
body .nav .nav__logo-text { min-width: 0 !important; }

/* =====================================================================
   TOPBAR im offenen Hamburger-Menü ausblenden + Overlay nach oben
   ===================================================================== */
body:has(.nav.js-menu-open) .topbar,
body:has(.nav.menu-open) .topbar {
  display: none !important;
}
/* Fallback ohne :has() — Menü-Overlay deckt Topbar zu */
body .nav.js-menu-open .nav__links,
body .nav.menu-open .nav__links {
  z-index: 1200 !important;
}

/* =====================================================================
   HERO MOBILE FIT — alles (Titel, Texte, beide Buttons) im ersten
   Viewport, ohne Scrollen. Greift auf schmalen Hochformat-Screens.
   ===================================================================== */
@media (max-width: 720px) and (orientation: portrait) {
  .hero {
    min-height: 100svh !important;
    height: 100svh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding-top: 5.5rem !important;
    padding-bottom: 1.75rem !important;
  }
  .hero__content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: clamp(0.7rem, 2.4vh, 1.3rem) !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
  .hero__title {
    font-size: clamp(1.85rem, 9vw, 2.9rem) !important;
    line-height: 1.0 !important;
    margin: 0 !important;
  }
  .hero__subtitle--lead {
    font-size: clamp(0.95rem, 4.4vw, 1.15rem) !important;
    line-height: 1.35 !important;
    margin: 0 !important;
  }
  .hero__subtitle--secondary {
    font-size: clamp(0.8rem, 3.6vw, 0.95rem) !important;
    line-height: 1.4 !important;
    margin: 0 !important;
  }
  .hero__cta {
    margin-top: clamp(0.3rem, 1.5vh, 0.8rem) !important;
    gap: 0.65rem !important;
  }
  .hero__cta .btn {
    min-height: 44px !important;
    padding: 0.7rem 1.1rem !important;
  }
  .hero__scroll-indicator { display: none !important; }
}

/* =====================================================================
   NAV GRID FINAL — seiten-zentriert (1fr auto 1fr), fluchtet mit Topbar.
   Greift erst ab 1101px: darunter übernimmt das Hamburger-Menü, sodass
   die mittig zentrierten Links das Logo NIE überlappen (auch Windows mit
   breiteren Fonts hat ab 1101px genug Platz). Letzte+spezifischste Regel.
   ===================================================================== */
@media (min-width: 1101px) {
  body .nav .nav__inner,
  body .nav.js-sticky .nav__inner,
  body .nav.scrolled .nav__inner {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    column-gap: clamp(0.75rem, 1.5vw, 1.75rem) !important;
  }
  body .nav .nav__logo {
    grid-column: 1 !important;
    justify-self: start !important;
    flex-shrink: 0 !important;
    min-width: 0 !important;
  }
  body .nav .nav__links {
    grid-column: 2 !important;
    justify-self: center !important;
    min-width: 0 !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
  }
  body .nav .nav__hamburger,
  body .nav [class*="status" i],
  body .nav [class*="opening" i] {
    grid-column: 3 !important;
    justify-self: end !important;
  }
}

/* =====================================================================
   HERO SHORT-VIEWPORT FINAL — flache Fenster (≤900px Höhe, jede Breite).
   Titel/Texte/Abstände skalieren mit der Fensterhöhe (vh) → Inhalt inkl.
   beider Buttons passt IMMER ins Bild, nichts wird vom Marquee verdeckt.
   Letzte Regel im File → überschreibt alle früheren Hero-Höhenregeln.
   ===================================================================== */
@media (max-height: 900px) {
  .hero {
    min-height: 100svh !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    /* mehr Bottom- als Top-Padding → zentrierter Block sitzt höher */
    padding-top: clamp(3.5rem, 8vh, 5.5rem) !important;
    padding-bottom: clamp(4rem, 11vh, 8rem) !important;
  }
  .hero__content { width: 100% !important; }
  .hero__title {
    font-size: clamp(1.9rem, 8vh, 5.8rem) !important;
    line-height: 0.95 !important;
    margin: 0 0 clamp(0.6rem, 1.8vh, 1.5rem) !important;
  }
  .hero__subtitle--lead {
    font-size: clamp(1.05rem, 2.9vh, 1.75rem) !important;
    line-height: 1.35 !important;
    margin: 0 0 clamp(0.5rem, 1.4vh, 1.2rem) !important;
  }
  .hero__subtitle--secondary {
    font-size: clamp(0.9rem, 2.3vh, 1.25rem) !important;
    line-height: 1.4 !important;
    margin: 0 0 clamp(0.5rem, 1.6vh, 1.4rem) !important;
  }
  .hero__cta {
    margin-top: clamp(0.4rem, 1.4vh, 1rem) !important;
  }
  .hero__scroll-indicator { display: none !important; }
}

/* =====================================================================
   RUHETAG-BADGE (Startseite, unter den Öffnungszeiten-Boxen).
   Spannt volle Breite über das Stats-Grid. Nur Standard-CSS
   (Flexbox + grid-column) → funktioniert in allen Browsern (Windows etc.).
   ===================================================================== */
.about__ruhetag {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: 0;
  padding: 0.9rem 1.4rem;
  border: 1px solid rgba(201, 168, 76, 0.32);
  border-radius: var(--radius, 8px);
  background: rgba(201, 168, 76, 0.07);
  font-family: 'Bebas Neue', var(--font-display, sans-serif);
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.82);
  text-align: center;
  line-height: 1.3;
}
.about__ruhetag span {
  display: inline-block;
  /* Bebas Neue sitzt optisch zu hoch in der Pille -> Text minimal nach unten
     versetzen. Padding-Summe (0.4rem) bleibt gleich, Pillengröße unverändert. */
  padding: 0.23rem 0.7rem 0.17rem;
  border-radius: 999px;
  background: var(--gold, #b78d3c);
  color: var(--green-dark, #0b2417);
  font-size: 0.8rem;
  text-align: center;
}
/* Text liegt in einem inneren <i>. letter-spacing rendert hinter dem letzten
   Buchstaben noch einen Extra-Abstand -> der Text wirkt nach links versetzt.
   Der negative rechte Margin zieht genau dieses nachlaufende letter-spacing
   wieder weg, dadurch sitzen die Buchstaben exakt mittig in der Pille (L=R). */
.about__ruhetag span i {
  display: inline-block;
  font-style: normal;
  letter-spacing: 0.22em;
  margin-right: -0.22em;
}

/* =====================================================================
   ABOUT GOLD-STAMP RESPONSIVE FINAL
   Die Auszeichnung klebt IMMER oben rechts am About-Bild - auch auf Tablet
   und Mobile. Sie ist an .about__visual verankert, das das Bild exakt
   umschliesst, und verschiebt sich daher mit dem Bild. Auf schmalen Screens
   sitzt sie knapp INNERHALB der Bildecke (kein horizontaler Overflow).
   ===================================================================== */
@media (max-width: 1024px) {
  #about .gold-stamp {
    display: block !important;
    top: 0.75rem;
    right: 0.75rem;
    left: auto;
    bottom: auto;
    width: clamp(100px, 28vw, 140px);
    height: clamp(100px, 28vw, 140px);
  }
  #about .gold-stamp__label { font-size: 1.6rem; }
  #about .gold-stamp__year { font-size: 0.7rem; }
}

/* =====================================================================
   ABOUT HEADING RESPONSIVE FINAL
   Wie im Kontaktbereich: In engen oder flachen Fenstern steht erst die
   grosse Headline, darunter der kleine Label-Text. Keine Überschneidung.
   ===================================================================== */
@media (max-width: 1200px), (max-height: 720px) {
  #about .about__text {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  #about .about__text > * {
    order: 3 !important;
  }

  #about .about__text .section__title,
  #about .about__text .section__title--display {
    order: 1 !important;
    margin: 0 0 clamp(0.85rem, 1.6vw, 1.35rem) !important;
    max-width: min(100%, 760px) !important;
  }

  #about .about__text .section__eyebrow {
    order: 2 !important;
    align-self: flex-start !important;
    margin: 0 0 clamp(1.5rem, 3vw, 2.5rem) !important;
  }
}

@media (max-height: 720px) {
  #about .about__text .section__title,
  #about .about__text .section__title--display {
    font-size: clamp(3rem, 10vh, 5rem) !important;
    line-height: 0.98 !important;
  }
}

/* =====================================================================
   ABOUT-FOTO SEITENVERHAELTNIS (ALLE Groessen)
   Das Foto ist Hochformat (900x1600 / 9:16). Ungekuerzt (object-fit:contain)
   wird es extrem hoch ("in ganzer Hoehe"); in breitem Container (cover) wurde
   es stark beschnitten / wirkte reingezoomt. Loesung: fester stehender Rahmen
   3:4 mit cover -> moderate Hoehe, nur leichter Crop, kein Zoom - auf Desktop,
   Tablet UND kleinen Fenstern gleich. max-height begrenzt die Hoehe in der
   einspaltigen Vollbreiten-Ansicht.
   ===================================================================== */
#about .about__photo:not(.about__photo--small) {
  height: auto !important;
  aspect-ratio: 3 / 4;
  /* Hoehen-Deckel fuer die einspaltige Vollbreiten-Ansicht. In kurzen/breiten
     Fenstern wird das Bild sonst zu flach (landscape) und die Auszeichnung sitzt
     gequetscht am oberen Rand -> etwas mehr Hoehe = besser lesbar. */
  max-height: 98vh !important;
  overflow: hidden !important;
}
#about .about__photo:not(.about__photo--small) img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* =====================================================================
   FIX 2026-07-28 — Hero-H1 (index.html): Gradient-Text stillgelegt
   ---------------------------------------------------------------------
   Ursache des Windows-Chrome-Bugs:
   .hero__title hatte background-clip:text + -webkit-text-fill-color:transparent.
   script.js zerlegte den Text zusaetzlich in <span class="hero-letter">, die per
   Keyframe filter:blur() animiert wurden -> jeder Span bekam einen eigenen
   Paint-Layer und fiel aus der Text-Clip-Maske des H1 heraus.
   Folge: macOS-Chrome malte gar nichts (Titel unsichtbar, aber 186px hoch),
   Windows-Chrome malte den Gradient teilweise ungeclippt -> weisser Fleck
   mitten im Hero-Foto.
   Loesung: Der Titel wird nicht mehr gerendert, bleibt aber als H1 im DOM fuer
   Suchmaschinen und Screenreader.
   WICHTIG — die Layout-Box bleibt bewusst erhalten (Groesse, Zeilenhoehe,
   margin-bottom kommen weiter aus den Regeln oben): dadurch sitzt der sichtbare
   Hero-Text exakt dort, wo er vorher sass, und zwar bei JEDER Fensterbreite,
   weil die Hoehe aus denselben clamp()-Werten faellt wie zuvor.
   Gemalt wird nichts: kein Gradient, kein background-clip:text, transparente
   Fuellung ohne Ausnahme, keine animierten/composited Kind-Spans. Damit gibt es
   nichts mehr, was ein Browser unterschiedlich rastern koennte.
   ===================================================================== */
.hero__title,
.hero__title[class] {
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  -webkit-text-stroke-width: 0 !important;
  text-shadow: none !important;
  will-change: auto !important;
  animation: none !important;
  filter: none !important;
  transform: none !important;
  -webkit-user-select: none !important;
  user-select: none !important;
}

/* Kind-Spans der beiden Buchstaben-Splitter (falls doch einer laeuft):
   keine eigene Compositing-Ebene, keine eigene Fuellung. */
.hero__title .hero-letter,
.hero__title .hero-title-letter,
.hero__title * {
  animation: none !important;
  filter: none !important;
  transform: none !important;
  opacity: 1 !important;
  will-change: auto !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  text-shadow: none !important;
}
