/* ═══════════════════════════════════════════════════════════════
   FRIDA & FRITZ – CAFÉ LITTENWEILER
   style.css  ·  Brand-first CSS  ·  Mobile First
═══════════════════════════════════════════════════════════════ */

/* ─── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400;1,9..144,600&family=Sora:wght@300;400;500;600&display=swap');

/* ─── CI DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Brandfarben */
  --cream:          #F3EBDD;
  --cream-dark:     #E9DDCA;
  --cream-darker:   #DCCFB7;
  --rust:           #BE5237;
  --rust-light:     #CD6A50;
  --rust-dark:      #9E4129;
  --sage:           #52664A;
  --sage-light:     #67806E;
  --sage-dark:      #3E4E38;
  --charcoal:       #2F2A28;
  --charcoal-soft:  #4D4743;
  --charcoal-faint: #6B6360;
  --yellow:         #E5B84B;
  --yellow-light:   #EEC96A;
  --white:          #FFFFFF;

  /* Lesbare Text-Alphas – immer mindestens AA-Kontrast */
  --text-on-dark:        rgba(243,235,221,0.92); /* Cream auf Charcoal/Dark */
  --text-on-dark-soft:   rgba(243,235,221,0.72); /* Sekundärtext auf Dark   */
  --text-on-sage:        rgba(243,235,221,0.94); /* Auf Sage-Hintergrund    */
  --text-on-sage-soft:   rgba(243,235,221,0.78); /* Sekundär auf Sage       */
  --text-on-rust:        rgba(243,235,221,0.96); /* Auf Rust-Hintergrund    */
  --text-on-rust-soft:   rgba(243,235,221,0.80); /* Sekundär auf Rust       */

  /* Typografie */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Sora', system-ui, sans-serif;

  /* Schriftgrößen */
  --fs-2xs:  0.6875rem;
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.375rem;
  --fs-xl:   1.75rem;
  --fs-2xl:  2.25rem;
  --fs-3xl:  3rem;
  --fs-4xl:  4rem;

  /* Abstände */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2.5rem;
  --sp-xl:  4rem;
  --sp-2xl: 6rem;
  --sp-3xl: 9rem;

  /* Radien */
  --r-sm:   6px;
  --r-md:   14px;
  --r-lg:   24px;
  --r-xl:   40px;
  --r-full: 999px;

  /* Schatten */
  --sh-sm:  0 2px 10px rgba(47,42,40,0.07);
  --sh-md:  0 8px 28px rgba(47,42,40,0.11);
  --sh-lg:  0 20px 56px rgba(47,42,40,0.15);

  /* Übergänge */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur:  0.4s;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ─── LAYOUT ───────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

section { padding: var(--sp-2xl) 0; }

/* ─── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.45s; }

/* ─── SECTION ANATOMY ──────────────────────────────────────── */
.section-header { margin-bottom: var(--sp-xl); }

.section-label {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: var(--sp-sm);
}
.section-label::before {
  content: '';
  display: block;
  width: 2rem; height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.section-label--rust  { color: var(--rust); }
/* Cream-Label: höherer Kontrast als zuvor */
.section-label--cream { color: rgba(243,235,221,0.80); }
.section-label--cream::before { background: rgba(243,235,221,0.55); }

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  max-width: 700px;
}
.section-headline--light { color: var(--cream); }

.section-intro {
  font-size: var(--fs-md);
  font-weight: 400; /* war 300 – besser lesbar */
  line-height: 1.8;
  color: var(--charcoal-soft);
  max-width: 640px;
  margin-top: var(--sp-md);
}
/* Auf dunklen Flächen: deutlich höherer Kontrast */
.section-intro--light { color: var(--text-on-dark-soft); }

/* ─── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.875rem 2rem;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--rust);
  color: var(--cream);
  border-color: var(--rust);
}
.btn--primary:hover {
  background: var(--rust-dark);
  border-color: var(--rust-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(190,82,55,0.32);
}
.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn--outline:hover {
  background: var(--charcoal);
  color: var(--cream);
  transform: translateY(-2px);
}
/* Cream-Outline auf dunklen Flächen: gut sichtbarer Rand */
.btn--outline-cream {
  background: transparent;
  color: var(--cream);
  border-color: rgba(243,235,221,0.55);
}
.btn--outline-cream:hover {
  background: rgba(243,235,221,0.12);
  border-color: var(--cream);
  color: var(--cream);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   NAV ACTIVE LINK
═══════════════════════════════════════════════════════════════ */
.nav__link.active { color: var(--rust); }
.nav__link.active::after { width: 100%; }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  padding: 1.125rem 0;
  /* Immer heller Cream-Hintergrund – Logo gut erkennbar */
  background: rgba(243,235,221,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(47,42,40,0.08);
  transition: background var(--dur) var(--ease),
              box-shadow  var(--dur) var(--ease),
              padding     var(--dur) var(--ease);
}

/* Scrolled: etwas kompakter, gleicher heller Hintergrund */
.nav.scrolled {
  background: rgba(243,235,221,0.99);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 2px 32px rgba(47,42,40,0.12);
  padding: 0.75rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
}

/* ─── Logo ─── */
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 1;
}

.nav__logo-img {
  display: block;
  height: 40px;
  width: auto;
}

/* Immer heller Hintergrund: farbiges Logo anzeigen */
.nav__logo-img--color { display: block; }
.nav__logo-img--dark  { display: none; }

/* Scrolled: gleich */
.nav.scrolled .nav__logo-img--color { display: block; }
.nav.scrolled .nav__logo-img--dark  { display: none; }

/* ─── Nav Links ─── */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Nav Links: Charcoal auf hellem Cream-Hintergrund */
.nav__link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  transition: color var(--dur);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--rust);
  transition: width var(--dur) var(--ease);
}
.nav__link:hover { color: var(--rust); }
.nav__link:hover::after { width: 100%; }
.nav__link.active { color: var(--rust); }
.nav__link.active::after { width: 100%; background: var(--rust); }

/* Scrolled: gleich wie Standard */
.nav.scrolled .nav__link { color: var(--charcoal); }
.nav.scrolled .nav__link::after { background: var(--rust); }
.nav.scrolled .nav__link:hover { color: var(--rust); }
.nav.scrolled .nav__link.active { color: var(--rust); }

/* ─── CTA Button ─── */
.nav__cta {
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  background: var(--rust);
  color: var(--cream);
  border-radius: var(--r-full);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.nav__cta:hover {
  background: var(--rust-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(190,82,55,0.35);
}

/* ─── Hamburger Toggle ─── */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  border-radius: var(--r-sm);
}
/* Balken: Charcoal auf hellem Nav */
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  transition: all var(--dur) var(--ease);
  transform-origin: center;
  border-radius: 2px;
}
.nav.scrolled .nav__toggle span { background: var(--charcoal); }

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

/* ─── Mobile Overlay ─── */
.nav__mobile-logo {
  display: block;
  height: 64px;
  width: auto;
  margin-bottom: var(--sp-lg);
}

.nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 890;
  padding: 5rem var(--sp-lg) var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
  transform: none;
}
.nav__mobile-link {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 500;
  color: var(--charcoal); /* dunkel auf hellem Cream – klarer Kontrast */
  border-bottom: 1px solid var(--cream-dark);
  padding: var(--sp-sm) 0;
  transition: color var(--dur);
}
.nav__mobile-link:hover { color: var(--rust); }


/* ═══════════════════════════════════════════════════════════════
   HERO – Vollflächig
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: var(--sp-2xl);
  overflow: hidden;
  background: var(--charcoal);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
/* Starker, klarer Overlay für sehr gute Lesbarkeit */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(47,42,40,0.95) 0%,
      rgba(47,42,40,0.82) 40%,
      rgba(47,42,40,0.45) 68%,
      rgba(47,42,40,0.18) 100%
    );
}

.hero .container { position: relative; z-index: 1; width: 100%; }
.hero__content { max-width: 640px; }

.hero__label {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: var(--sp-md);
}
.hero__label::before {
  content: '';
  display: block;
  width: 1.75rem; height: 1px;
  background: currentColor;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--cream); /* helles Cream auf dunklem Overlay – sehr guter Kontrast */
  margin-bottom: var(--sp-md);
}

.hero__text {
  font-size: var(--fs-md);
  font-weight: 400; /* war 300 – besser lesbar */
  line-height: 1.78;
  color: var(--text-on-dark); /* 0.92 statt 0.70 */
  max-width: 520px;
  margin-bottom: var(--sp-lg);
}

.hero__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-lg);
  font-weight: 300;
  color: var(--yellow-light);
  padding-left: var(--sp-md);
  border-left: 2px solid var(--yellow);
  line-height: 1.45;
  margin-bottom: var(--sp-xl);
}

/* Outline-Button: gut sichtbar auf dunklem Hero */
.hero .btn--outline {
  color: var(--cream);
  border-color: rgba(243,235,221,0.55);
}
.hero .btn--outline:hover {
  background: rgba(243,235,221,0.12);
  border-color: var(--cream);
  color: var(--cream);
  transform: translateY(-2px);
}

.hero__actions {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
}

.hero__deco {
  position: absolute;
  bottom: -2rem; right: -1rem;
  font-family: var(--font-display);
  font-size: clamp(10rem, 22vw, 26rem);
  font-weight: 700;
  line-height: 1;
  opacity: 0.04;
  color: var(--cream);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}


/* ═══════════════════════════════════════════════════════════════
   TICKER BAND
═══════════════════════════════════════════════════════════════ */
.ticker {
  background: var(--charcoal);
  overflow: hidden;
  padding: 1.125rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 50s linear infinite;
  will-change: transform;
}
.ticker__track:hover { animation-play-state: paused; }

.ticker__set { display: flex; align-items: center; }

.ticker__item {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--text-on-dark); /* 0.92 statt 0.78 – besser lesbar */
  white-space: nowrap;
  padding: 0 1.25rem;
}
.ticker__dot {
  color: var(--rust-light);
  font-size: 0.5rem;
  opacity: 0.9;
  flex-shrink: 0;
}

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


/* ═══════════════════════════════════════════════════════════════
   KONZEPT
═══════════════════════════════════════════════════════════════ */
.konzept { background: var(--cream); }

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

/* Karte-Bild-Banner */
.kcard__img-wrap {
  margin: calc(-1 * var(--sp-xl)) calc(-1 * var(--sp-lg)) var(--sp-lg);
  height: 190px;
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.kcard__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}

.kcard {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-xl) var(--sp-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.kcard:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.kcard:hover .kcard__img-wrap img { transform: scale(1.05); }

.kcard--frida   { border-top: 3px solid var(--rust); }
.kcard--fritz   { border-top: 3px solid var(--sage); }
.kcard--familie { border-top: 3px solid var(--yellow); }

.kcard__icon { font-size: 2rem; display: block; margin-bottom: var(--sp-sm); }
.kcard__sub {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-xs);
}
.kcard--frida   .kcard__sub { color: var(--rust); }
.kcard--fritz   .kcard__sub { color: var(--sage); }
.kcard--familie .kcard__sub { color: var(--charcoal-faint); }

.kcard__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: var(--sp-sm);
}
.kcard__text {
  font-size: var(--fs-sm);
  font-weight: 400; /* war 300 */
  line-height: 1.78;
  color: var(--charcoal-soft);
  margin-bottom: var(--sp-md);
}
.kcard__time {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.375rem 0.9rem;
  border-radius: var(--r-full);
}
.kcard--frida   .kcard__time { background: rgba(190,82,55,0.1);  color: var(--rust-dark); }
.kcard--fritz   .kcard__time { background: rgba(82,102,74,0.1);   color: var(--sage-dark); }
.kcard--familie .kcard__time { background: rgba(229,184,75,0.18); color: var(--charcoal); }

.kcard::after {
  content: attr(data-name);
  position: absolute;
  bottom: -1rem; right: 1rem;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.04;
  color: var(--charcoal);
  pointer-events: none;
  user-select: none;
}


/* ═══════════════════════════════════════════════════════════════
   FAMILIEN-SEKTION
═══════════════════════════════════════════════════════════════ */
.familie {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.familie__img {
  position: relative;
  overflow: hidden;
}
.familie__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.8s var(--ease);
}
.familie:hover .familie__img img { transform: scale(1.03); }

/* Bild fadet nach rechts & unten zu Charcoal → saubere untere Kante für Übergang */
.familie__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  transparent 55%, var(--charcoal) 100%),
    linear-gradient(to bottom, transparent 70%, var(--charcoal) 100%);
}

.familie__body {
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-2xl) var(--sp-xl);
}

.familie__headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin: var(--sp-sm) 0 var(--sp-md);
}

.familie__text {
  font-size: var(--fs-md);
  font-weight: 400; /* war 300 */
  line-height: 1.8;
  color: var(--text-on-dark); /* 0.92 statt 0.65 */
  max-width: 460px;
  margin-bottom: var(--sp-lg);
}

.familie__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-lg);
  font-weight: 300;
  color: var(--yellow-light);
  padding-left: var(--sp-md);
  border-left: 2px solid var(--yellow);
  line-height: 1.5;
  margin-bottom: var(--sp-xl);
}


/* ═══════════════════════════════════════════════════════════════
   USP — saubere Sage-Section unter der Familie-Sektion
   + feiner Brand-Akzent als Übergang (Yellow → Rust → Fade)
═══════════════════════════════════════════════════════════════ */
.usp {
  background:
    linear-gradient(90deg,
      transparent 0%,
      var(--yellow) 28%,
      var(--rust) 72%,
      transparent 100%
    ) top / 100% 3px no-repeat,
    var(--sage);
  padding: var(--sp-2xl) 0;
  position: relative;
  overflow: hidden;
}
.usp::before, .usp::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.usp::before { width: 400px; height: 400px; top: -100px; right: -100px; background: rgba(255,255,255,0.04); }
.usp::after  { width: 280px; height: 280px; bottom: -80px; left: -60px; background: rgba(255,255,255,0.03); }

.usp__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-2xl);
  align-items: center;
}

.usp__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--yellow);
  color: var(--charcoal);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1.125rem;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-md);
}
.usp__headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.9rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: var(--sp-md);
  max-width: 580px;
}
.usp__text {
  font-size: var(--fs-base);
  font-weight: 400; /* war 300 */
  line-height: 1.82;
  color: var(--text-on-sage); /* 0.94 statt 0.72 */
  max-width: 540px;
}

.usp__card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  text-align: center;
  min-width: 220px;
  backdrop-filter: blur(8px);
  transition: background var(--dur) var(--ease);
}
.usp__card:hover { background: rgba(255,255,255,0.16); }
.usp__card-icon { font-size: 3.25rem; display: block; margin-bottom: var(--sp-sm); }
.usp__card-label {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.35;
  margin-bottom: var(--sp-xs);
}
.usp__card-sub {
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--text-on-sage-soft); /* 0.78 statt 0.55 */
}


/* ═══════════════════════════════════════════════════════════════
   SPEISEKARTE
═══════════════════════════════════════════════════════════════ */
.speisekarte { background: var(--cream-dark); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
}

.menu-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--sp-xl);
}

/* Speisekarte-Bild */
.mblock__img-wrap {
  margin: calc(-1 * var(--sp-xl)) calc(-1 * var(--sp-xl)) var(--sp-lg);
  height: 170px;
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  flex-shrink: 0;
}
.mblock__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}
.mblock:hover .mblock__img-wrap img { transform: scale(1.04); }

/* Sommer-Layout */
.mblock__summer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
  flex: 1;
}
.mblock__summer-img {
  height: 220px;
  border-radius: var(--r-md);
  overflow: hidden;
}
.mblock__summer-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.mblock:hover .mblock__summer-img img { transform: scale(1.04); }

.mblock {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  box-shadow: var(--sh-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.mblock:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.mblock--wide { grid-column: span 2; }
.mblock--dark { background: var(--charcoal); }
.mblock--summer { background: linear-gradient(135deg, var(--yellow) 0%, #D6A230 100%); }

.mblock__head { margin-bottom: var(--sp-md); }

.mblock__time {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: var(--sp-xs);
}
.mblock--dark   .mblock__time { color: var(--yellow-light); }
.mblock--summer .mblock__time { color: rgba(47,42,40,0.65); }

.mblock__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  line-height: 1.25;
  color: var(--charcoal);
}
.mblock--dark   .mblock__title { color: var(--cream); }
.mblock--summer .mblock__title { color: var(--charcoal); }
.mblock__title--large { font-size: var(--fs-2xl); }

.mblock__body {
  font-size: var(--fs-md);
  font-weight: 400; /* war 300 */
  line-height: 1.78;
  color: var(--charcoal-soft);
  margin-bottom: var(--sp-md);
}
.mblock--summer .mblock__body { color: rgba(47,42,40,0.80); }

.mblock__items {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-bottom: var(--sp-md);
}
.mblock__items--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--sp-md);
}

.mblock__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--sp-sm);
  font-size: var(--fs-sm);
  color: var(--charcoal-soft);
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(47,42,40,0.12);
}
.mblock__item:last-child { border-bottom: none; }
/* Auf dunkler Karte: besserer Kontrast */
.mblock--dark .mblock__item {
  color: var(--text-on-dark-soft); /* 0.72 statt 0.65 */
  border-bottom-color: rgba(243,235,221,0.09);
}

.mblock__name { font-weight: 600; color: var(--charcoal); } /* war 500 */
.mblock--dark .mblock__name { color: var(--cream); }

.mblock__price { font-family: var(--font-display); font-weight: 500; color: var(--rust); flex-shrink: 0; }
.mblock--dark .mblock__price { color: var(--yellow-light); }

.mblock__note {
  font-size: var(--fs-xs);
  font-style: italic;
  font-weight: 500;
  color: var(--sage-dark);
  margin-top: auto;
  padding-top: var(--sp-sm);
}
.mblock--dark   .mblock__note { color: var(--text-on-dark-soft); } /* 0.72 statt 0.45 */
.mblock--summer .mblock__note { color: rgba(47,42,40,0.65); }


/* ═══════════════════════════════════════════════════════════════
   ÖFFNUNGSZEITEN + STANDORT
═══════════════════════════════════════════════════════════════ */
.oeffnungszeiten { background: var(--cream); }

.oeffnungszeiten__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: start;
}
.oeffnungszeiten__left { padding-right: var(--sp-xl); }

.hours-list { margin: var(--sp-xl) 0; border-top: 1px solid var(--cream-darker); }
.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-sm);
  padding: 1rem 0;
  border-bottom: 1px solid var(--cream-darker);
}
.hours-row__days {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--charcoal);
  min-width: 100px;
}
.hours-row__time {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--charcoal);
  flex: 1;
}
.hours-row__tag {
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: 0.25rem 0.8rem;
  border-radius: var(--r-full);
  background: rgba(229,184,75,0.22);
  color: var(--charcoal); /* dunkel auf gelbem Hintergrund – gut lesbar */
  white-space: nowrap;
}
.hours-row__tag--sage {
  background: rgba(82,102,74,0.14);
  color: var(--sage-dark);
}

.reservierung-hint {
  margin-top: var(--sp-xl);
  padding: var(--sp-lg);
  background: var(--cream-dark);
  border-radius: var(--r-lg);
  font-size: var(--fs-sm);
  font-weight: 400; /* war 300 */
  color: var(--charcoal-soft);
  line-height: 1.75;
}

/* Reservierung-Sektion (eigenständig) */
.reservierung-section {
  background: var(--cream);
  padding: var(--sp-2xl) 0 var(--sp-xl);
  position: relative;
}
.reservierung-section__head {
  margin-bottom: var(--sp-lg);
}
.section-sub {
  font-size: var(--fs-md);
  color: var(--charcoal-soft);
  line-height: 1.7;
  max-width: 560px;
  margin: var(--sp-sm) auto 0;
  text-align: center;
}

/* Reservierung iFrame */
.reservierung-iframe-wrap {
  margin-top: var(--sp-lg);
  margin-bottom: 0;
  background: var(--cream-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(47,42,40,0.08);
}

/* Standort-Karte */
.standort-card {
  background: var(--charcoal);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  color: var(--cream);
  position: sticky;
  top: 6rem;
}

.standort-card__map {
  background: rgba(82,102,74,0.25);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  height: 210px;
  margin-bottom: var(--sp-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.standort-card__map-inner {
  position: relative;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.standort-card__map-lines { position: absolute; inset: 0; }
.map-line, .map-block { position: absolute; }
.map-line--h { top: 50%; left: 0; right: 0; height: 1px; background: rgba(243,235,221,0.08); }
.map-line--v { left: 50%; top: 0; bottom: 0; width: 1px; background: rgba(243,235,221,0.08); }
.map-line--d1 { top: 30%; left: 10%; right: 40%; height: 1px; background: rgba(243,235,221,0.06); transform: rotate(-15deg); }
.map-line--d2 { bottom: 30%; left: 30%; right: 10%; height: 1px; background: rgba(243,235,221,0.06); transform: rotate(-15deg); }
.map-block--1 { top: 15%; left: 10%; width: 70px; height: 35px; border-radius: 5px; background: rgba(243,235,221,0.06); }
.map-block--2 { top: 55%; left: 55%; width: 50px; height: 45px; border-radius: 5px; background: rgba(82,102,74,0.25); }
.map-block--3 { bottom: 15%; left: 20%; width: 60px; height: 30px; border-radius: 5px; background: rgba(243,235,221,0.05); }

.standort-card__map-pin {
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  animation: pin-bob 3s ease-in-out infinite;
}
@keyframes pin-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.standort-card__map-label {
  position: absolute;
  bottom: 0.75rem; left: 0.75rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  background: var(--rust);
  color: var(--cream);
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-full);
  letter-spacing: 0.05em;
}

.standort-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.25;
  margin: var(--sp-xs) 0 var(--sp-sm);
}
.standort-card__address {
  font-size: var(--fs-sm);
  font-weight: 400; /* war 300 */
  color: var(--text-on-dark); /* 0.92 statt 0.65 */
  line-height: 1.8;
  margin-bottom: var(--sp-md);
}
.standort-card__tip {
  font-size: var(--fs-sm);
  font-weight: 400; /* war 300 */
  color: var(--text-on-dark-soft); /* 0.72 statt 0.50 */
  line-height: 1.75;
  padding: var(--sp-sm) var(--sp-md);
  border-left: 2px solid var(--sage-light);
  background: rgba(82,102,74,0.12);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-bottom: var(--sp-lg);
}
.standort-card__links { display: flex; }


/* ═══════════════════════════════════════════════════════════════
   ABO-KARTEN
═══════════════════════════════════════════════════════════════ */
.abokarten {
  background: var(--rust);
  padding: var(--sp-3xl) 0;
  position: relative;
  overflow: hidden;
}
.abokarten::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.abo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  position: relative;
  z-index: 1;
}

.abo-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.abo-card:hover { background: rgba(255,255,255,0.16); transform: translateY(-6px); }
.abo-card--featured {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.30);
}

.abo-card__badge {
  position: absolute;
  top: -0.75rem; left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--charcoal);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.abo-card__icon { font-size: 2.25rem; display: block; margin-bottom: var(--sp-md); }
.abo-card__name {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: var(--sp-xs);
}
.abo-card__tagline {
  font-size: var(--fs-sm);
  font-weight: 400; /* war 300 */
  color: var(--text-on-rust); /* 0.96 statt 0.68 */
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
}
.abo-card__pricing { margin-bottom: var(--sp-sm); }
.abo-card__price {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.abo-card__period {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 400; /* war 300 */
}
.abo-card__original {
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--text-on-rust-soft); /* 0.80 statt 0.40 – line-through braucht mehr Kontrast */
  text-decoration: line-through;
  margin-top: 0.25rem;
}
.abo-card__savings {
  display: inline-block;
  background: var(--yellow);
  color: var(--charcoal);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: var(--r-full);
  margin-top: var(--sp-sm);
}


/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer { background: var(--charcoal); padding: var(--sp-2xl) 0 var(--sp-md); }

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-2xl);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--sp-lg);
}

.footer__brand-logo {
  display: block;
  height: 76px;
  width: auto;
  margin-bottom: var(--sp-md);
  filter: brightness(0) invert(1) opacity(0.88);
}
.footer__brand-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-md);
  font-weight: 300;
  color: var(--rust-light);
  margin-bottom: var(--sp-sm);
}
.footer__brand-text {
  font-size: var(--fs-sm);
  font-weight: 400; /* war 300 */
  color: var(--text-on-dark-soft); /* 0.72 statt 0.50 */
  line-height: 1.75;
  max-width: 340px;
  margin-bottom: var(--sp-lg);
}

.footer__social { display: flex; gap: var(--sp-xs); }
.footer__social-link {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-on-dark); /* 0.92 statt 0.55 */
  font-size: var(--fs-sm);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur) var(--ease);
}
.footer__social-link:hover {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--cream);
  transform: translateY(-2px);
}

.footer__col-title {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243,235,221,0.60);
  margin-bottom: var(--sp-md);
}

.footer__list { display: flex; flex-direction: column; gap: var(--sp-sm); }
.footer__list-item {
  font-size: var(--fs-sm);
  font-weight: 400; /* war 300 */
  color: var(--text-on-dark-soft); /* 0.72 statt 0.60 */
  line-height: 1.7;
}
.footer__list-item strong {
  color: var(--cream);
  font-weight: 600;
  display: block;
}
.footer__list-item a { transition: color var(--dur); }
.footer__list-item a:hover { color: var(--cream); }

.footer__tag {
  display: inline-block;
  font-size: var(--fs-2xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-full);
  background: rgba(229,184,75,0.22);
  color: var(--yellow-light);
  margin-top: 0.25rem;
}
.footer__tag--sage { background: rgba(82,102,74,0.28); color: var(--sage-light); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
}
.footer__copy {
  font-size: var(--fs-xs);
  color: rgba(243,235,221,0.58);
}
.footer__legal { display: flex; gap: var(--sp-md); }
.footer__legal a {
  font-size: var(--fs-xs);
  color: rgba(243,235,221,0.58);
  transition: color var(--dur);
}
.footer__legal a:hover { color: rgba(243,235,221,0.80); }


/* ═══════════════════════════════════════════════════════════════
   GALERIE – Stimmungsbilder
═══════════════════════════════════════════════════════════════ */
.galerie {
  background: var(--charcoal);
  padding: 0;
  overflow: hidden;
}

.galerie__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 3px;
}

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

.galerie__item {
  position: relative;
  overflow: hidden;
  margin: 0;
}
.galerie__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s var(--ease), filter 0.4s ease;
  filter: brightness(0.88) saturate(1.05);
}
.galerie__item:hover img {
  transform: scale(1.06);
  filter: brightness(0.96) saturate(1.1);
}

/* Caption: immer mit starkem Gradient-Hintergrund */
.galerie__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-md) var(--sp-md) var(--sp-sm);
  background: linear-gradient(to top, rgba(47,42,40,0.85) 0%, transparent 100%);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream); /* volles Cream statt 75% */
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.galerie__item:hover .galerie__caption {
  opacity: 1;
  transform: none;
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE – 1024px (Tablet Landscape)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .familie__body { padding: var(--sp-2xl) var(--sp-lg); }
  .familie__body { padding: var(--sp-2xl) var(--sp-xl); }

  .konzept-grid { gap: var(--sp-sm); }

  .usp__inner { grid-template-columns: 1fr; text-align: center; }
  .usp__headline, .usp__text { max-width: 100%; }
  .usp__card { margin: 0 auto; }

  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__top > :first-child { grid-column: span 2; }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE – 768px (Tablet Portrait / großes Mobile)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --sp-xl:  2.5rem;
    --sp-2xl: 3.5rem;
    --sp-3xl: 5rem;
  }

  /* Container etwas weniger Padding */
  .container { padding: 0 1.25rem; }

  /* Navigation */
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__logo-img { height: 36px; }

  /* Hero */
  .hero { min-height: 88svh; padding-top: 4.5rem; }
  .hero__deco { display: none; }
  .hero__text { font-size: var(--fs-base); }

  /* Konzept */
  .konzept-grid { grid-template-columns: 1fr; gap: var(--sp-md); }
  .kcard__img-wrap { height: 200px; }
  .kcard { padding: var(--sp-lg) var(--sp-md); }
  .kcard__img-wrap { margin: calc(-1 * var(--sp-lg)) calc(-1 * var(--sp-md)) var(--sp-md); }

  /* Familien-Sektion */
  .familie {
    grid-template-columns: 1fr;
    grid-template-rows: 300px auto;
    min-height: 0;
  }
  /* Auf Mobile: Bild fadet nach unten, Body kommt danach */
  .familie__img::after {
    background: linear-gradient(to bottom, transparent 60%, var(--charcoal) 100%);
  }
  .familie__body { padding: var(--sp-xl) var(--sp-md); }
  .familie__headline { font-size: clamp(2rem, 6vw, 3rem); }

  /* USP auf Mobile */
  .usp { padding: var(--sp-xl) 0; }

  /* Galerie: 2 Spalten */
  .galerie__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 200px 200px 200px;
  }
  .galerie__item--tall { grid-row: span 1; }
  .galerie__item--wide { grid-column: span 2; }

  /* Speisekarte */
  .menu-grid { grid-template-columns: 1fr; }
  .mblock--wide { grid-column: span 1; }
  .mblock__items--grid { grid-template-columns: 1fr; }
  .mblock__summer-layout { grid-template-columns: 1fr; }
  .mblock__summer-img { height: 180px; }
  .mblock { padding: var(--sp-lg); }
  .mblock__img-wrap {
    margin: calc(-1 * var(--sp-lg)) calc(-1 * var(--sp-lg)) var(--sp-md);
    height: 160px;
  }

  /* Öffnungszeiten */
  .oeffnungszeiten__grid { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .oeffnungszeiten__left { padding-right: 0; }
  .standort-card { position: static; }

  /* Abo-Karten */
  .abo-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  /* Footer */
  .footer__top { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .footer__top > :first-child { grid-column: span 1; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE – 480px (Mobile)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  :root {
    --sp-lg:  1.75rem;
    --sp-xl:  2rem;
    --sp-2xl: 3rem;
  }

  .container { padding: 0 1rem; }

  /* Hero */
  .hero__headline { font-size: clamp(2.25rem, 9vw, 3rem); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; width: 100%; }

  /* Öffnungszeiten Tabelle */
  .hours-row { flex-wrap: wrap; gap: 0.25rem; }
  .hours-row__days { min-width: 80px; font-size: var(--fs-xs); }
  .hours-row__time { font-size: var(--fs-base); flex: 1 0 100%; padding-top: 0.1rem; }
  .hours-row__tag { font-size: 0.65rem; }

  /* Galerie: 1 Spalte */
  .galerie__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .galerie__item--tall,
  .galerie__item--wide { grid-row: span 1; grid-column: span 1; }
  .galerie__item { height: 200px; }
  /* Caption immer sichtbar auf Mobile (kein Hover-State) */
  .galerie__caption { opacity: 1; transform: none; }

  /* Konzept-Karten */
  .kcard__img-wrap { height: 160px; }

  /* Abo-Karten: volle Breite */
  .abo-grid { max-width: 100%; }
  .abo-card { padding: var(--sp-lg); }

  /* Familien */
  .familie { grid-template-rows: 240px auto; }
}


/* ═══════════════════════════════════════════════════════════════
   UX-POLISH · A11Y · REDUCED MOTION   (additive — überschreibt nichts)
═══════════════════════════════════════════════════════════════ */

/* ─── Skip-Link ────────────────────────────────────────────── */
.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: var(--r-sm);
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

/* ─── Focus-Visible (Tastatur-Nutzer) ─────────────────────── */
*:focus { outline: none; }

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
.btn:focus-visible,
.nav__cta:focus-visible,
.nav__link:focus-visible,
.nav__mobile-link:focus-visible,
.footer__social-link:focus-visible,
.footer__legal a:focus-visible,
.nav__toggle:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
.hero .btn--outline:focus-visible,
.btn--outline-cream:focus-visible,
.footer__social-link:focus-visible {
  outline-color: var(--yellow);
}

/* ─── Scroll-Margin für Anchor-Sections ───────────────────── */
section[id],
[id="reservierung"] {
  scroll-margin-top: 6rem;
}

/* ─── Hours-Row: Layout sauber ohne Tags ───────────────────── */
.hours-row__days { min-width: 110px; }
.hours-row__time { text-align: right; }

/* ─── Nav: Hamburger-Fläche größer (Touch) ─────────────────── */
.nav__toggle {
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav__cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.5rem;
}

/* ─── Social-Links: Touch-Target ───────────────────────────── */
.footer__social-link { width: 44px; height: 44px; }

/* ─── Mobile-Menu scrollbar falls Inhalt überläuft ─────────── */
.nav__mobile {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* ─── Buttons auf Mobile enger gestaffelt ──────────────────── */
.btn { min-height: 44px; }

/* ─── Galerie-Caption: auch auf Tablet immer sichtbar ──────── */
@media (max-width: 1024px) {
  .galerie__caption {
    opacity: 1;
    transform: none;
  }
}

/* ─── Reservierungs-Iframe responsive Höhen ────────────────── */
@media (max-width: 1024px) {
  .reservierung-iframe-wrap iframe { min-height: 850px !important; }
}
@media (max-width: 768px) {
  .reservierung-iframe-wrap iframe { min-height: 700px !important; }
}
@media (max-width: 480px) {
  .reservierung-iframe-wrap iframe { min-height: 620px !important; }
}

/* ─── Hero: kleiner Polish auf Mobile ──────────────────────── */
@media (max-width: 768px) {
  .hero__quote { font-size: var(--fs-md); padding-left: var(--sp-sm); }
  .hero__actions { gap: 0.75rem; }
  .ticker__item { font-size: var(--fs-xs); padding: 0 1rem; }
}

/* ─── Standort-Card: nicht sticky unter 1024px ─────────────── */
@media (max-width: 1024px) {
  .standort-card { position: static; }
}

/* ─── Footer auf Mobile: Kontakt-Links full-width tappable ── */
@media (max-width: 480px) {
  .footer__list-item a {
    display: inline-block;
    padding: 0.25rem 0;
    min-height: 32px;
  }
  .footer__copy, .footer__legal a { font-size: var(--fs-xs); }
}

/* ─── Prefers Reduced Motion ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal { opacity: 1; transform: none; }
  .ticker__track { animation: none; }
  .standort-card__map-pin { animation: none; }
  .kcard:hover,
  .mblock:hover,
  .abo-card:hover,
  .btn:hover,
  .nav__cta:hover,
  .footer__social-link:hover { transform: none; }
  .kcard:hover .kcard__img-wrap img,
  .mblock:hover .mblock__img-wrap img,
  .mblock:hover .mblock__summer-img img,
  .familie:hover .familie__img img,
  .galerie__item:hover img { transform: none; filter: none; }
}


/* ═══════════════════════════════════════════════════════════════
   SPEISEKARTE · MENU PAGE
═══════════════════════════════════════════════════════════════ */

.menu-page {
  min-height: 100svh;
  padding-top: 7rem;
  padding-bottom: 6rem;
  background: var(--cream);
}
.menu-page .container { max-width: 1100px; }

/* Zurück-Link */
.menu-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--charcoal-soft);
  margin-bottom: 2rem;
  transition: color var(--dur);
  min-height: 32px;
}
.menu-back:hover { color: var(--rust); }
.menu-back svg { flex-shrink: 0; }

/* Kopfbereich */
.menu-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cream-darker);
}
.menu-subtitle-top {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}
.menu-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.05;
  margin-bottom: 0.5rem;
}
.menu-subtitle {
  font-family: 'Caveat', var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--rust);
  line-height: 1;
}

/* Quick-Nav Chips */
.menu-chips {
  position: sticky;
  top: 70px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem 0;
  margin-bottom: 3rem;
  background: var(--cream);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur), box-shadow var(--dur);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.menu-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--cream-darker);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--charcoal-soft);
  background: var(--white);
  white-space: nowrap;
  min-height: 40px;
  transition: all var(--dur);
}
.menu-chip:hover,
.menu-chip:focus-visible {
  background: var(--rust);
  color: var(--text-on-rust);
  border-color: var(--rust);
}

/* Section */
.menu-section {
  margin-bottom: 4.5rem;
  scroll-margin-top: 140px;
}
.menu-section__head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.menu-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: -0.01em;
  display: inline-block;
  position: relative;
  padding: 0 0.5rem;
}
.menu-section__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--rust);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}
.menu-section__intro {
  font-size: var(--fs-sm);
  color: var(--charcoal-soft);
  line-height: 1.7;
  max-width: 560px;
  margin: 0.75rem auto 0;
}
.menu-section__meta {
  font-family: 'Caveat', var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--rust);
  margin-top: 0.5rem;
}

/* Grid der Boxen */
.menu-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}
.menu-columns--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 2.5rem;
}

/* Karte / Box */
.menu-box {
  background: var(--white);
  border: 1px solid var(--cream-darker);
  border-radius: var(--r-md);
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: var(--sh-sm);
  position: relative;
}
.menu-box--accent {
  background: var(--cream-dark);
  border-color: var(--cream-darker);
  box-shadow: none;
}
.menu-box--wide {
  margin-top: 2rem;
  padding: 2rem 2rem 1.75rem;
}

/* Kategorie-Titel (handschriftlich) */
.menu-box__cat {
  font-family: 'Caveat', var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--rust);
  line-height: 1;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.menu-box__cat--sage { color: var(--sage); }
.menu-box__season {
  font-family: var(--font-body);
  font-size: var(--fs-2xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-faint);
  background: var(--cream);
  padding: 0.2rem 0.55rem;
  border-radius: var(--r-full);
  line-height: 1.2;
}
.menu-box__kicker {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-faint);
  margin-bottom: 0.75rem;
  margin-top: -0.5rem;
}
.menu-box__note {
  font-size: var(--fs-xs);
  color: var(--charcoal-faint);
  font-style: italic;
  margin-top: 1rem;
  line-height: 1.6;
}
.menu-box__body {
  font-size: var(--fs-base);
  color: var(--charcoal-soft);
  line-height: 1.7;
}

/* Items-Liste */
.menu-items {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.menu-items--desc { gap: 1.1rem; }

/* Einzelnes Item (inline mit dotted leader) */
.menu-item {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  font-size: var(--fs-base);
  color: var(--charcoal);
  line-height: 1.4;
}
.menu-item::before {
  content: "";
  order: 2;
  flex: 1 1 auto;
  border-bottom: 1px dotted var(--cream-darker);
  transform: translateY(-0.35em);
  min-width: 16px;
}
.menu-item__name {
  order: 1;
  flex: 0 1 auto;
  font-weight: 500;
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
}
.menu-item__price {
  order: 3;
  flex: 0 0 auto;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.menu-item__desc {
  font-size: var(--fs-xs);
  font-weight: 400;
  color: var(--charcoal-faint);
  line-height: 1.5;
  font-style: italic;
}

/* Block-Variante (mit Beschreibung darunter) */
.menu-item--block {
  display: block;
}
.menu-item--block::before { display: none; }
.menu-item--block .menu-item__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.35rem;
}
.menu-item--block .menu-item__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-md);
  color: var(--charcoal);
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.menu-item--block .menu-item__price {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--rust);
}
.menu-item__body {
  font-size: var(--fs-sm);
  color: var(--charcoal-soft);
  line-height: 1.65;
}

/* Add-Ons */
.menu-item__addons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px dashed var(--cream-darker);
}
.menu-item__addons li {
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--charcoal-soft);
  background: var(--cream);
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.menu-item__addons li span {
  font-weight: 600;
  color: var(--rust);
}

/* Tags */
.vegan-tag,
.season-tag,
.menu-item__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-2xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: var(--r-full);
  line-height: 1.2;
  white-space: nowrap;
}
.vegan-tag {
  color: var(--sage);
  background: rgba(82,102,74,0.12);
}
.season-tag {
  color: var(--yellow);
  background: rgba(229,184,75,0.15);
}
.menu-item__tag {
  color: var(--charcoal-faint);
  background: var(--cream);
}

/* Footer-Note */
.menu-footer-note {
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--charcoal-faint);
  line-height: 1.7;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-darker);
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .menu-columns,
  .menu-columns--2 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .menu-section { margin-bottom: 3.5rem; }
  .menu-chips { top: 64px; }
}

@media (max-width: 768px) {
  .menu-page { padding-top: 6rem; padding-bottom: 4rem; }
  .menu-box { padding: 1.35rem 1.25rem 1.15rem; }
  .menu-box--wide { padding: 1.5rem 1.25rem 1.25rem; }
  .menu-box__cat { font-size: 1.75rem; }
  .menu-item--block .menu-item__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }
  .menu-chips {
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .menu-chips.is-stuck,
  .menu-chips:not(:first-child) {
    border-bottom-color: var(--cream-darker);
  }
}

@media (max-width: 480px) {
  .menu-page { padding-top: 5.5rem; }
  .menu-chip {
    font-size: var(--fs-xs);
    padding: 0.45rem 0.9rem;
  }
  .menu-box { padding: 1.2rem 1rem 1rem; }
  .menu-item { font-size: var(--fs-sm); }
  .menu-item--block .menu-item__name { font-size: var(--fs-base); }
  .menu-item__body { font-size: var(--fs-xs); }
  .menu-headline { line-height: 1.1; }
  .menu-header { margin-bottom: 1.5rem; padding-bottom: 1.25rem; }
}

/* Prefers Reduced Motion — Menü */
@media (prefers-reduced-motion: reduce) {
  .menu-chip,
  .menu-back { transition: none; }
}
