/* Café Galerie Étoile — Higgsfield-Konzept
   Brand: navy #1B2A6B · sandstone #C9A876 · cream #FAF7F0 · charcoal #1A1A1F */

:root {
  --navy: #1b2a6b;
  --navy-deep: #131f4f;
  --sand: #c9a876;
  --sand-soft: #e3cda6;
  --cream: #faf7f0;
  --cream-warm: #f3ebdc;
  --charcoal: #1a1a1f;
  --ink: #2a2a32;
  --muted: #6b6b73;
  --line: rgba(26, 26, 31, 0.12);
  --shadow: 0 24px 60px -24px rgba(19, 31, 79, 0.35);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --pad: clamp(1.25rem, 5vw, 6rem);
  --maxw: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.04; letter-spacing: -0.01em; }
.serif-italic { font-style: italic; }
em { font-style: italic; color: var(--sand); }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.eyebrow {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--sand);
}
.lead { font-size: clamp(1.05rem, 2.2vw, 1.35rem); color: var(--muted); max-width: 46ch; }

.btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--sans); font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.02em; padding: 0.85em 1.7em; border-radius: 999px;
  background: var(--navy); color: var(--cream);
  transition: transform 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--navy-deep); }
.btn--ghost { background: transparent; color: var(--cream); border: 1px solid rgba(250, 247, 240, 0.5); }
.btn--ink { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn--ink:hover { background: var(--navy); color: var(--cream); }

/* ---------- Nav — transparent über Hero, Glas beim Scrollen ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; transform: none;
  z-index: 100; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 0.5rem clamp(1rem, 4vw, 2.4rem); border-radius: 0;
  background: transparent; border-bottom: 1px solid transparent; box-shadow: none;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.nav.scrolled, .nav.open, .nav--solid {
  background: rgba(250, 247, 240, 0.92); backdrop-filter: blur(14px);
  border-bottom-color: var(--line); box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
}

/* Logo-Lockup (typografisch, wie Alperens EtoileMark) — hell über Hero, dunkel bei Glas */
.nav__brand { display: inline-flex; flex-direction: column; align-items: center; gap: 1px; line-height: 1; white-space: nowrap; text-decoration: none;
  text-shadow: 0 1px 12px rgba(0,0,0,0.45); transition: text-shadow 0.35s ease; }
.nav__brand .b-star { color: var(--sand); font-size: 0.78rem; line-height: 1; }
.nav__brand .b-cafe { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 1.02rem; line-height: 1; color: var(--cream); transition: color 0.35s ease; }
.nav__brand .b-word { font-family: var(--sans); font-weight: 700; letter-spacing: 0.05em; font-size: 0.7rem; line-height: 1.15; color: var(--cream); transition: color 0.35s ease; }
.nav__brand .b-word .b-e { color: var(--sand); }
.nav.scrolled .nav__brand, .nav.open .nav__brand, .nav--solid .nav__brand { text-shadow: none; }
.nav.scrolled .nav__brand .b-cafe, .nav.scrolled .nav__brand .b-word,
.nav.open .nav__brand .b-cafe, .nav.open .nav__brand .b-word,
.nav--solid .nav__brand .b-cafe, .nav--solid .nav__brand .b-word { color: var(--navy); }

.nav__links { display: flex; gap: 1.25rem; }
.nav__links a { font-size: 0.86rem; font-weight: 500; color: var(--cream); transition: color 0.2s; white-space: nowrap; text-shadow: 0 1px 10px rgba(0,0,0,0.4); }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--sand); }
.nav.scrolled .nav__links a, .nav--solid .nav__links a { color: var(--ink); text-shadow: none; }
.nav__cta { font-size: 0.82rem; padding: 0.6em 1.2em; }

/* Burger (nur mobil sichtbar) */
.nav__burger { display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 9px; border: none; background: transparent; cursor: pointer; }
.nav__burger span { display: block; height: 2px; width: 100%; background: var(--cream); border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.35); transition: transform 0.3s ease, opacity 0.2s ease, background 0.35s ease; }
.nav.scrolled .nav__burger span, .nav.open .nav__burger span, .nav--solid .nav__burger span { background: var(--navy); box-shadow: none; }

@media (max-width: 760px) {
  .nav { top: 0; left: 0; right: 0; padding: 0.4rem 1rem; gap: 0.5rem; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav.open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  /* Dropdown-Panel öffnet nach unten unter der Top-Pille */
  .nav__links { position: absolute; top: 100%; left: 0; right: 0;
    display: none; flex-direction: column; gap: 0; padding: 0.5rem;
    background: rgba(250, 247, 240, 0.97); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav.open .nav__links { display: flex; }
  .nav__links a { padding: 0.95rem 1rem; font-size: 1.05rem; border-radius: 12px; color: var(--ink); text-shadow: none; }
  .nav__links a:hover, .nav__links a[aria-current="page"] { background: rgba(27, 42, 107, 0.06); color: var(--navy); }
}

/* ---------- Hero ---------- */
.hero { position: relative; height: 100svh; min-height: 600px; overflow: hidden; color: var(--cream); }
.hero__media { position: absolute; inset: 0; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(19,31,79,0.30) 0%, rgba(19,31,79,0.05) 35%, rgba(26,26,31,0.55) 100%);
}
.hero__inner {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--pad) clamp(3rem, 9vh, 7rem);
  max-width: var(--maxw); margin: 0 auto;
}
.hero .eyebrow { color: var(--cream); text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55); }
.hero h1 { font-size: clamp(2.8rem, 8vw, 6.5rem); max-width: 16ch; text-shadow: 0 2px 30px rgba(0,0,0,0.4); }
.hero__sub { margin-top: 1.2rem; font-size: clamp(1rem, 2vw, 1.3rem); max-width: 40ch; opacity: 0.95; }
.hero__actions { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.scroll-hint { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  z-index: 2; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; opacity: 0.8; }
/* Mobil: Hero full-screen, Motiv frei — Verlauf nur unten, Untertitel aus */
@media (max-width: 760px) {
  .hero { height: 100svh !important; min-height: 0 !important; }
  .hero__media::after { background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(26,26,31,0.74) 100%); }
  .hero h1 { font-size: clamp(2.3rem, 9vw, 3.2rem); }
  .hero__sub { display: none; }
  .hero__inner { padding-bottom: clamp(1.8rem, 6vh, 3rem); }
  .hero__actions { margin-top: 1.4rem; }
}

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding-block: clamp(4rem, 12vh, 9rem); }
.section--cream { background: var(--cream); }
.section--warm { background: var(--cream-warm); }
.section--navy { background: var(--navy); color: var(--cream); }
.section--ink { background: var(--charcoal); color: var(--cream); }
.section__head { max-width: 60ch; margin-bottom: clamp(2rem, 5vh, 3.5rem); }
.section__head h2 { font-size: clamp(2rem, 5vw, 3.6rem); margin-top: 0.6rem; }

/* Drei Welten */
.welten { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.welt { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow); }
.welt img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.welt:hover img { transform: scale(1.06); }
.welt__label { position: absolute; inset: auto 0 0 0; padding: 1.4rem; color: var(--cream);
  background: linear-gradient(180deg, transparent, rgba(19,31,79,0.85)); }
.welt__label h3 { font-size: 1.5rem; }
.welt__label p { font-size: 0.9rem; opacity: 0.9; margin-top: 0.3rem; }
@media (max-width: 820px) { .welten { grid-template-columns: 1fr; } .welt { aspect-ratio: 16/10; } }

/* Aussicht / full-bleed feature */
.feature { display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: clamp(2rem, 5vw, 5rem); }
.feature--flip { direction: rtl; } .feature--flip > * { direction: ltr; }
.feature__media { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow); }
.feature__media img, .feature__media video { width: 100%; height: 100%; object-fit: cover; }
.feature__body h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1rem; }
@media (max-width: 820px) { .feature { grid-template-columns: 1fr; } .feature--flip { direction: ltr; } }

/* Teaser cards (Speisekarte / Galerie) */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card { background: var(--cream); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
.card__media { aspect-ratio: 4/3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 1.4rem 1.5rem 1.7rem; }
.card__body h3 { font-size: 1.35rem; }
.card__price { font-family: var(--serif); color: var(--sand); font-size: 1.1rem; margin-top: 0.4rem; }
.card__body p { font-size: 0.92rem; color: var(--muted); margin-top: 0.4rem; }
@media (max-width: 820px) { .cards { grid-template-columns: 1fr; } }

/* Showcase — Bewegt-Kacheln (Essen/Drinks) */
.showcase { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.tile { background: var(--cream); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); display: block; transition: transform 0.3s ease; }
.tile:hover { transform: translateY(-4px); }
.tile__media { aspect-ratio: 4/5; overflow: hidden; background: #000; }
.tile__media video, .tile__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tile__body { padding: 1.1rem 1.2rem 1.4rem; }
.tile__body h3 { font-size: 1.3rem; }
.tile__price { font-family: var(--serif); color: var(--sand); font-size: 1.05rem; }
.tile__body p { font-size: 0.88rem; color: var(--muted); margin-top: 0.3rem; }
@media (max-width: 980px) { .showcase { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .showcase { grid-template-columns: 1fr; } .tile__media { aspect-ratio: 16/10; } }

/* Full-bleed Video-Sektion */
.fullbleed { position: relative; min-height: 88svh; display: flex; align-items: center; overflow: hidden; color: var(--cream); }
.fullbleed__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fullbleed::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(19,31,79,0.65) 0%, rgba(19,31,79,0.25) 55%, rgba(26,26,31,0.35) 100%); }
.fullbleed__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); width: 100%; }
.fullbleed__inner h2 { font-size: clamp(2rem, 5.5vw, 4rem); max-width: 18ch; margin: 0.6rem 0 1rem; text-shadow: 0 2px 24px rgba(0,0,0,0.35); }
.fullbleed__inner p { max-width: 42ch; font-size: clamp(1rem, 2vw, 1.2rem); opacity: 0.95; }
.fullbleed .eyebrow { color: var(--cream); }

/* Menu list (speisekarte page) */
.menu-section { margin-bottom: clamp(2.5rem, 6vh, 4rem); }
.menu-section > h3:not(.subcat) { font-size: clamp(1.6rem, 4vw, 2.4rem); }
.menu-section > .intro { color: var(--muted); margin: 0.4rem 0 1.5rem; max-width: 50ch; }
.menu-item { display: flex; align-items: baseline; gap: 1rem; padding: 0.8rem 0; border-bottom: 1px solid var(--line); }
.menu-item__name { font-weight: 600; }
.menu-item__desc { color: var(--muted); font-size: 0.9rem; font-style: italic; }
.menu-item__dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.menu-item__price { font-family: var(--serif); color: var(--navy); white-space: nowrap; }

/* Cocktails (tiki) */
.cocktails { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; }
.cocktail { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; overflow: hidden; }
.cocktail__media { aspect-ratio: 3/4; overflow: hidden; }
.cocktail__media img { width: 100%; height: 100%; object-fit: cover; }
.cocktail__body { padding: 1.2rem 1.3rem 1.5rem; }
.cocktail__body h3 { font-size: 1.3rem; }
.cocktail__tag { font-size: 0.88rem; opacity: 0.8; margin-top: 0.3rem; }
.cocktail__ing { font-size: 0.8rem; opacity: 0.6; margin-top: 0.6rem; }
.cocktail__price { font-family: var(--serif); color: var(--sand); margin-top: 0.6rem; font-size: 1.1rem; }

/* Gallery grid */
.gallery { columns: 3; column-gap: 1rem; }
.gallery img { width: 100%; margin-bottom: 1rem; border-radius: 10px; break-inside: avoid; box-shadow: var(--shadow); }
@media (max-width: 820px) { .gallery { columns: 2; } }
@media (max-width: 520px) { .gallery { columns: 1; } }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-grid .map { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow); }
.contact-grid iframe { width: 100%; height: 100%; border: 0; }
.info-row { padding: 0.7rem 0; border-bottom: 1px solid var(--line); }
.info-row span { display: block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sand); }
.hours li { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid var(--line); }
.hours li.rest { color: var(--sand); font-weight: 600; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

/* Footer */
.footer { background: var(--charcoal); color: var(--cream); padding-block: clamp(3rem, 8vh, 5rem) 2rem; }
.footer__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; }
.footer h3 { font-size: 1.8rem; }
.footer a { opacity: 0.8; } .footer a:hover { opacity: 1; color: var(--sand); }
.footer__legal { margin-top: 3rem; font-size: 0.78rem; opacity: 0.55; display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ---------- Reveal animation base ---------- */
/* Content bleibt immer sichtbar; Animation bewegt nur sanft rein, damit keine leeren Flächen entstehen wenn JS/CDN/Fullpage-Capture hakt. */
html.js .reveal { opacity: 1; transform: translateY(18px); }
html.js .reveal.is-in { opacity: 1; transform: none; transition: transform 0.75s cubic-bezier(0.22,1,0.36,1); }
/* Karten-Seiten: ruhig — Gericht-Karten statisch, Sektionen nur sanft einblenden (kein Verschieben) */
html.js .menu-section .reveal { transform: none; opacity: 0; }
html.js .menu-section .reveal.is-in { opacity: 1; transform: none; transition: opacity 0.35s ease; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal, html.js .menu-section .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Karten-Seiten: schlankes Band, Sprung-Navi, Feature-Bild ---------- */
.pagehead { position: relative; height: 42svh; min-height: 300px; display: flex; align-items: flex-end; overflow: hidden; color: var(--cream); }
.pagehead__img { position: absolute; inset: 0; }
.pagehead__img img { width: 100%; height: 100%; object-fit: cover; }
.pagehead::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(19,31,79,0.25) 0%, rgba(19,31,79,0) 30%, rgba(26,26,31,0.72) 100%); }
.pagehead__inner { position: relative; z-index: 1; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.2rem,4vw,3rem) clamp(1.6rem,4vh,2.6rem); }
.pagehead h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.02; text-shadow: 0 2px 24px rgba(0,0,0,0.4); }
.pagehead .eyebrow { color: var(--sand-soft); text-shadow: 0 1px 12px rgba(0,0,0,0.5); }

/* Sprung-Navi (Chips) — klebt unter der Top-Leiste */
.menunav { position: sticky; top: 56px; z-index: 90; background: rgba(243,235,220,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.menu-section { scroll-margin-top: 116px; }
.menunav__row { display: flex; gap: 0.4rem; overflow-x: auto; max-width: 1100px; margin: 0 auto; padding: 0.7rem clamp(1rem,4vw,2rem); scrollbar-width: none; }
.menunav__row::-webkit-scrollbar { display: none; }
.menunav a { flex: 0 0 auto; font-size: 0.82rem; font-weight: 500; color: var(--ink); padding: 0.4rem 0.85rem; border: 1px solid var(--line); border-radius: 999px; white-space: nowrap; transition: all 0.2s; }
.menunav a:hover { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.menu-section { scroll-margin-top: 132px; }

/* Feature-Bild je Sektion (kuratiert, einheitlich) */
.menu-feature { position: relative; border-radius: var(--radius, 16px); overflow: hidden; aspect-ratio: 16/7; margin-bottom: 1.6rem; box-shadow: var(--shadow); }
.menu-feature img { width: 100%; height: 100%; object-fit: cover; display: block; }
.menu-feature__label { position: absolute; left: 1rem; bottom: 0.8rem; color: var(--cream); font-family: var(--serif); font-style: italic; font-size: 1.1rem; text-shadow: 0 1px 12px rgba(0,0,0,0.55); }
.menu-feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.45) 100%); }
@media (max-width: 760px) { .menu-feature { aspect-ratio: 16/9; } .pagehead { height: 38svh; } }

/* Kürzeres Band für Legal-/Textseiten */
.pagehead--short { height: 32svh; min-height: 240px; }
@media (max-width: 760px) { .pagehead--short { height: 30svh; min-height: 200px; } }

/* Legal- / Fließtext-Seiten */
.legal h2 { font-size: 1.5rem; margin: 2.2rem 0 0.6rem; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.1rem; margin: 1.6rem 0 0.4rem; color: var(--navy); }
.legal p { color: var(--ink); line-height: 1.7; margin-bottom: 0.9rem; max-width: 68ch; }
.legal a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--sand); }

/* ---------- Bewertungen ---------- */
.reviews__badge { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.reviews__score { font-family: var(--serif); font-size: 3rem; line-height: 1; color: var(--navy); }
.stars { display: inline-flex; gap: 2px; font-size: 1.05rem; letter-spacing: 1px; }
.stars i { font-style: normal; color: var(--line); }
.stars i.on { color: var(--sand); }
.stars i.half { background: linear-gradient(90deg, var(--sand) 50%, var(--line) 50%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.reviews__meta { color: var(--muted); font-size: 0.92rem; }
.reviews__meta a { color: var(--navy); }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.2rem; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.4rem; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 0.7rem; }
.review-card__head { display: flex; align-items: center; gap: 0.7rem; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: var(--cream); display: grid; place-items: center; font-weight: 600; font-size: 0.95rem; flex: 0 0 auto; }
.review-card__name { font-weight: 600; font-size: 0.95rem; }
.review-card__date { color: var(--muted); font-size: 0.78rem; }
.review-card__text { color: var(--ink); line-height: 1.55; font-size: 0.95rem; }
.reviews__actions { margin-top: 2rem; display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* Social-Icons */
.social-icons { display: inline-flex; gap: 0.6rem; }
.social-icons a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(250,247,240,0.3); display: grid; place-items: center; color: var(--cream); transition: all 0.2s; }
.social-icons a:hover { background: var(--sand); border-color: var(--sand); color: var(--navy); opacity: 1; }
.social-icons svg { width: 18px; height: 18px; fill: currentColor; }

/* Header: Logo + Burger +15% (2026-06-21) */
.nav__brand .b-star { font-size: 0.90rem; }
.nav__brand .b-cafe { font-size: 1.173rem; }
.nav__brand .b-word { font-size: 0.805rem; }
.nav__burger { width: 46px; height: 46px; padding: 10.35px; gap: 5.75px; }
.nav__burger span { height: 2.3px; }

/* Map consent gate: no Google iframe before click */
.map-consent { display: grid; place-items: center; min-height: 280px; background: linear-gradient(135deg, rgba(27,42,107,.08), rgba(201,168,118,.16)); }
.map-consent__placeholder { text-align: center; padding: 2rem; color: var(--ink); }
.map-consent__placeholder strong { display: block; font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2rem); color: var(--navy); margin-bottom: .5rem; }
.map-consent__placeholder p { max-width: 34ch; margin: 0 auto 1rem; color: var(--muted); font-size: .95rem; }
.map-consent iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Sticky Sektions-Titel (Karten-Seiten) ---------- */
.menu-section .cattitle { position: sticky; top: var(--sticktop, 126px); z-index: 8;
  background: rgba(243,235,220,0.96); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  padding: 0.45rem 0.5rem; border-radius: 0 0 12px 12px; }

/* ---------- Tisch-Merkliste ---------- */
.dishcard { position: relative; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.dishcard .ml-star { display: none; position: absolute; top: 0.55rem; right: 0.7rem; color: var(--sand); font-size: 1.05rem; }
.dishcard.sel { box-shadow: 0 0 0 2px var(--sand), var(--shadow); background: #f7e3bb; }
.dishcard.sel .ml-star { display: block; }

/* ---------- Beliebt-Chip (Empfehlung des Hauses) ---------- */
.fav-chip { display: inline-block; vertical-align: 2px; margin-left: 0.4rem; font-family: var(--sans);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: #8a6a3f; background: rgba(201,168,118,0.16); border: 1px solid rgba(201,168,118,0.55);
  border-radius: 999px; padding: 0.18rem 0.55rem; white-space: nowrap; }

/* ---------- Kategorie-Kachel-Hub ---------- */
.cathub { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0.9rem;
  max-width: 1080px; margin: 1.5rem auto 0.4rem; padding-inline: var(--pad); }
.cathub a { position: relative; display: block; aspect-ratio: 4/3; border-radius: 14px; overflow: hidden;
  box-shadow: 0 10px 26px rgba(19,31,79,0.18); transition: transform 0.25s; }
.cathub a:hover { transform: translateY(-3px); }
.cathub img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cathub__lbl { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: center;
  padding: 0.55rem 0.5rem; background: linear-gradient(rgba(19,31,79,0) 45%, rgba(19,31,79,0.82));
  color: var(--cream); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.04em; text-align: center; line-height: 1.25; }
@media (max-width: 480px) { .cathub { grid-template-columns: 1fr 1fr; gap: 0.7rem; } }

/* ---------- Willkommens-Empfehlung ---------- */
.wlc { position: fixed; inset: 0; z-index: 200; background: rgba(19,26,47,0.55); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center; padding: 1.4rem; opacity: 0; transition: opacity 0.25s; }
.wlc.on { opacity: 1; }
.wlc__card { position: relative; background: var(--cream); border-radius: 18px; overflow: hidden; max-width: 330px; width: 100%;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45); transform: translateY(14px); transition: transform 0.25s; }
.wlc.on .wlc__card { transform: none; }
.wlc__card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.wlc__body { padding: 1rem 1.3rem 1.3rem; text-align: center; }
.wlc__body h4 { font-family: var(--serif); color: var(--navy); font-size: 1.45rem; margin: 0.45rem 0 0.3rem; }
.wlc__body p { color: var(--ink); font-size: 0.9rem; line-height: 1.5; margin: 0; }
.wlc__close { position: absolute; top: 0.6rem; right: 0.6rem; width: 32px; height: 32px; border-radius: 50%;
  border: none; background: rgba(19,26,47,0.55); color: #fff; font-size: 1.25rem; line-height: 1; cursor: pointer; }

/* ---------- Karten-Navigation im App-Stil ---------- */
html.knav .menu-section { display: none; }
html.knav .menu-section.kon { display: block; }
html.knav body:not(.kview) .legende { display: none; }
html.knav body.kview .cathub { display: none; }
.kback { display: none; margin: 1.2rem auto 0; max-width: 1080px; padding-inline: var(--pad); }
html.knav body.kview .kback { display: block; }
html.knav .kback { background: none; border: none; cursor: pointer; font-family: var(--sans);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy); text-align: left; width: 100%; }
html.knav .kback:hover { color: #8a6a3f; }
