/* möbius · Homepage Styles
   Palette aus dem Restaurant abgeleitet:
   - ink: tiefes Anthrazit-Schwarz (warm, nicht kühl) — wie die Wand, die Samtbänke
   - linen: gebrochenes Creme — wie die Tischdecken, Servietten
   - paper: helles Creme — für Leseflächen
   - gold: feine Goldlinie — Zitat vom Barbarie-Porzellan
   - bloom-*: floraler Akzent aus dem Wandbild, sparsam
*/

:root {
  --ink: #141013;              /* warm black, fast aubergine */
  --ink-soft: #1e1a1d;         /* etwas heller, für Cards auf dunkel */
  --ink-mute: #3a3338;         /* für Secondary Text auf dunkel */

  --linen: #f3ecdf;            /* Tischdecke */
  --paper: #f9f4e9;            /* Serviette, hellere Fläche */
  --paper-warm: #ece3d0;       /* leichter Schatten auf Paper */

  --gold: #c9a96b;             /* Goldlinie */
  --gold-soft: rgba(201, 169, 107, 0.35);

  --bloom-rose: #c97a7e;       /* staubiges Rosé aus den Lilien */
  --bloom-coral: #d97757;      /* gedämpftes Koralle aus den Amaryllen */
  --bloom-violet: #6d5680;     /* leises Violett aus den Tulpen */
  --bloom-moss: #6b7558;       /* gedämpftes Grün aus den Blättern */

  /* SANS-VARIANTE — Hauptschrift ist Sans, Serif-Italic ist NUR Akzent */
  --sans: "Instrument Sans", -apple-system, sans-serif;     /* Brot & Butter */
  --display: "Instrument Sans", -apple-system, sans-serif;   /* Headlines (gleiche Schrift, andere Größe/Weight/Tracking) */
  --accent: "Instrument Serif", Georgia, serif;              /* Serif-Italic NUR für Akzentwörter */
  --mono: "JetBrains Mono", ui-monospace, monospace;
  /* Legacy alias — damit alte .serif-Klassen nicht brechen */
  --serif: var(--accent);
}

/* Schriftbild-Varianten — Sans-Kandidaten */
body[data-font="f"] { --sans: "Instrument Sans", sans-serif; --display: "Instrument Sans", sans-serif; }
body[data-font="g"] { --sans: "Space Grotesk", sans-serif;   --display: "Space Grotesk", sans-serif; }
body[data-font="h"] { --sans: "Archivo", sans-serif;         --display: "Archivo", sans-serif; }
body[data-font="i"] { --sans: "Syne", sans-serif;            --display: "Syne", sans-serif; }
body[data-font="j"] { --sans: "Manrope", sans-serif;         --display: "Manrope", sans-serif; }

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--linen);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

/* --- Typografie-Grundlagen --- */
.serif { font-family: var(--serif); font-weight: 400; }
.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; }
.sans { font-family: var(--sans); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.rule {
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 0.75rem;
}

/* --- Layout --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container-narrow {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { position: relative; }

/* --- Paper-Flächen (die "Tischdecken") --- */
.paper-surface {
  background: var(--linen);
  color: var(--ink);
}
.paper-surface .eyebrow { color: var(--bloom-coral); }
.paper-surface .rule { background: var(--ink); opacity: 0.4; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 1.75rem;
  border: 1px solid currentColor;
  background: transparent;
  color: var(--linen);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
}
.btn:hover { background: var(--linen); color: var(--ink); border-color: var(--linen); }

.btn-primary {
  background: var(--linen);
  color: var(--ink);
  border-color: var(--linen);
}
.btn-primary:hover {
  background: transparent;
  color: var(--linen);
}

.paper-surface .btn {
  color: var(--ink);
  border-color: var(--ink);
}
.paper-surface .btn:hover {
  background: var(--ink);
  color: var(--linen);
}
.paper-surface .btn-primary {
  background: var(--ink);
  color: var(--linen);
}
.paper-surface .btn-primary:hover {
  background: transparent;
  color: var(--ink);
}

/* --- Font Picker --- */
.font-picker {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 999;
  font-family: var(--sans);
}
.font-picker-toggle {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem 0.55rem 1rem;
  background: rgba(20, 16, 19, 0.82);
  backdrop-filter: blur(14px);
  color: var(--linen);
  border: 1px solid rgba(243, 236, 223, 0.15);
  cursor: pointer;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--sans);
  transition: all 0.25s ease;
}
.font-picker-toggle:hover { border-color: var(--gold); color: var(--gold); }
.font-picker-current {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0;
  text-transform: none;
  min-width: 1rem;
  text-align: center;
}
.font-picker-panel {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  width: 280px;
  background: rgba(20, 16, 19, 0.96);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(243, 236, 223, 0.12);
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: all 0.25s ease;
}
.font-picker.open .font-picker-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.font-picker-title {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  padding: 0 0.25rem;
}
.fp-option {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  padding: 0.75rem;
  cursor: pointer;
  color: var(--linen);
  transition: all 0.2s ease;
  margin-bottom: 0.35rem;
}
.fp-option:hover { background: rgba(243, 236, 223, 0.05); }
.fp-option.active {
  background: rgba(201, 169, 107, 0.08);
  border-color: rgba(201, 169, 107, 0.35);
}
.fp-option-head {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}
.fp-option-letter {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  width: 0.85rem;
}
.fp-option-name {
  font-size: 1.1rem;
  color: var(--linen);
  letter-spacing: 0;
}
.fp-option-hint {
  font-family: var(--sans);
  font-size: 0.7rem;
  color: rgba(243, 236, 223, 0.5);
  letter-spacing: 0.06em;
  padding-left: 1.6rem;
  margin-bottom: 0.4rem;
}
.fp-option-preview {
  font-size: 1.4rem;
  color: var(--linen);
  opacity: 0.92;
  padding-left: 1.6rem;
  line-height: 1.1;
}
.fp-option-preview em {
  color: var(--gold);
  font-style: italic;
}

/* Font-Picker auf Mobile ausblenden — ist ein Vergleichstool, nicht für End-User */
@media (max-width: 960px) {
  .font-picker { display: none !important; }
}

/* Nav anpassen wenn Font-Picker sichtbar */
@media (max-width: 720px) {
  .font-picker { top: auto; bottom: 1rem; right: 1rem; }
  .font-picker-panel { top: auto; bottom: calc(100% + 0.6rem); transform: translateY(6px); }
  .font-picker.open .font-picker-panel { transform: translateY(0); }
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.4s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(20, 16, 19, 0.92);
  backdrop-filter: blur(12px);
  padding: 1rem 2rem;
}
.nav-brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--linen);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}
.nav-links a {
  color: var(--linen);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-book {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 0.55rem 1.1rem;
  letter-spacing: 0.14em !important;
  transition: all 0.3s ease;
  opacity: 1 !important;
}
.nav-book:hover { background: var(--gold); color: var(--ink) !important; }

/* --- Hamburger (nur Mobile sichtbar) --- */
.nav-hamburger {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  position: relative;
  width: 44px;
  height: 44px;
  margin-right: -0.5rem;
  -webkit-tap-highlight-color: transparent;
}
.nav-hamburger-bar {
  display: block;
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--linen);
  transition: transform 0.28s ease, top 0.28s ease, opacity 0.2s ease;
}
.nav-hamburger-bar:nth-child(1) { top: 16px; }
.nav-hamburger-bar:nth-child(2) { top: 22px; }
.nav-hamburger-bar:nth-child(3) { top: 28px; }
.nav-hamburger.is-open .nav-hamburger-bar:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}
.nav-hamburger.is-open .nav-hamburger-bar:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open .nav-hamburger-bar:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

/* Mobile Nav Overlay */
@media (max-width: 960px) {
  .nav-hamburger { display: block; }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 100dvh;
    background: #141013;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 5rem 2rem 3rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s ease;
    z-index: 200;
  }
  .nav-links.mobile-open {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    font-size: 1.05rem;
    letter-spacing: 0.14em;
    padding: 1rem 0;
    border-top: 1px solid rgba(243, 236, 223, 0.08);
    width: 100%;
    max-width: 320px;
    text-align: center;
    margin: 0 auto;
  }
  .nav-links a:first-of-type { border-top: 0; }
  /* Tisch buchen: vollständig goldumrandet, keine Top-Trennlinie */
  .nav-links a.nav-book {
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    border: 1px solid var(--gold);
    width: auto;
    max-width: none;
  }
  /* Hamburger über dem Overlay */
  .nav-hamburger { z-index: 210; position: relative; }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 7rem 0 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 16, 19, 0.55) 0%,
    rgba(20, 16, 19, 0.35) 40%,
    rgba(20, 16, 19, 0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  color: var(--linen);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: var(--linen);
  opacity: 0.88;
  max-width: 36rem;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-meta {
  position: absolute;
  right: 2rem;
  bottom: 4rem;
  z-index: 1;
  text-align: right;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--linen);
  opacity: 0.7;
  line-height: 2;
}

/* --- Intro: Welcome --- */
.welcome {
  padding: 7rem 0;
  background: var(--ink);
  position: relative;
}
.welcome-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.welcome-text .eyebrow { margin-bottom: 1.5rem; display: block; }
.welcome-text h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  margin-bottom: 1.75rem;
  color: var(--linen);
}
.welcome-text p {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--linen);
  opacity: 0.82;
  margin-bottom: 1.25rem;
  max-width: 32rem;
}
.welcome-text p em {
  font-family: var(--accent);
  font-style: italic;
  color: var(--gold);
  font-size: 1em;
  letter-spacing: 0.02em;
}
.welcome-signature {
  margin-top: 2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold);
}
.welcome-image {
  position: relative;
}
.welcome-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}
.welcome-image-caption {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--linen);
  color: var(--ink);
  padding: 1rem 1.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  max-width: 14rem;
}

/* --- Awards strip --- */
.awards {
  background: var(--ink);
  padding: 3rem 0;
  border-top: 1px solid rgba(243, 236, 223, 0.08);
  border-bottom: 1px solid rgba(243, 236, 223, 0.08);
}
.awards-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.award-item {
  flex: 1;
  min-width: 180px;
  text-align: center;
  color: var(--linen);
}
.award-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.award-sub {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.65;
}
.award-divider {
  width: 1px;
  height: 40px;
  background: rgba(243, 236, 223, 0.15);
}

/* --- Plates (Kitchen philosophy + images) --- */
.plates {
  padding: 8rem 0 7rem;
  background: var(--linen);
  color: var(--ink);
}
.plates-header {
  text-align: center;
  margin-bottom: 5rem;
}
.plates-header .eyebrow { color: var(--bloom-coral); }
.plates-header h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 1.25rem auto 1.5rem;
  max-width: 24ch;
  color: var(--ink);
  text-wrap: balance;
}
.plates-header h2 em { font-style: italic; color: var(--bloom-coral); }
.plates-header p {
  max-width: 42rem;
  margin: 0 auto;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.78;
}
.plates-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}
.plate-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.plate-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.plate-card:hover img { transform: scale(1.04); }
.plate-caption {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  color: var(--linen);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  max-width: 80%;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}
.plate-a { grid-column: 1 / 6; height: 520px; }
.plate-b { grid-column: 6 / 13; height: 520px; }
.plate-c { grid-column: 1 / 5; height: 420px; }
.plate-d { grid-column: 5 / 9; height: 420px; }
.plate-e { grid-column: 9 / 13; height: 420px; }

/* Placeholder-Teller (bis die Foto-Dateien in ASCII-Namen vorliegen) */
.plate-placeholder {
  width: 100%; height: 100%;
  background: var(--ink);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.5rem;
  position: relative;
}
.plate-placeholder-alt { background: #201a1e; }
.plate-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 169, 107, 0.08) 0%, transparent 60%);
}
.plate-placeholder-dot {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #f3ecdf 0%, #d9cfbc 55%, #a89d88 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 -10px 30px rgba(0,0,0,0.15);
  position: relative;
  z-index: 1;
}
.plate-placeholder-dot-coral { background: radial-gradient(circle at 40% 35%, #e89a8a 0%, #d97757 55%, #a55640 100%); }
.plate-placeholder-dot-gold { background: radial-gradient(circle at 40% 35%, #eed7a3 0%, #c9a96b 55%, #8c7644 100%); }
.plate-placeholder-dot-moss { background: radial-gradient(circle at 40% 35%, #a5b590 0%, #6b7558 55%, #48503d 100%); }
.plate-placeholder-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--linen);
  opacity: 0.55;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

/* Fallback wenn world-image nicht lädt */
.world-image-fallback {
  background: var(--ink);
  position: relative;
}
.world-image-fallback::after {
  content: "möbius";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
}

/* --- Menu teaser --- */
.menu-teaser {
  padding: 8rem 0;
  background: var(--ink);
}
.menu-inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5rem;
  align-items: center;
}
.menu-image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
}
.menu-text .eyebrow { display: block; margin-bottom: 1.5rem; }
.menu-text h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 2rem;
  color: var(--linen);
}
.menu-text h2 em { font-style: italic; color: var(--gold); }

.menu-list {
  list-style: none;
  border-top: 1px solid rgba(243, 236, 223, 0.12);
}
.menu-list li {
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(243, 236, 223, 0.12);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: baseline;
}
.menu-list-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--linen);
  margin-bottom: 0.35rem;
}
.menu-list-title em { font-style: italic; color: var(--gold); }
.menu-list-desc {
  font-size: 1.1rem;
  color: var(--linen);
  opacity: 0.7;
  line-height: 1.55;
  max-width: 28rem;
}
.menu-list-price {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--gold);
  white-space: nowrap;
}
.menu-cta-row {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Haus / Worlds of möbius --- */
.worlds {
  padding: 4rem 0 8rem;
  background: var(--paper);
  color: var(--ink);
  position: relative;
}
.worlds-header {
  max-width: 720px;
  margin: 0 auto 5rem;
  text-align: center;
}
.worlds-header .eyebrow { color: var(--bloom-violet); }
.worlds-header h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 1.25rem 0 1.5rem;
  color: var(--ink);
  text-wrap: balance;
}
.worlds-header h2 em { font-style: italic; color: var(--bloom-violet); }
.worlds-header p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.6;
  opacity: 0.78;
}

.worlds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.world {
  background: var(--linen);
  border: 1px solid rgba(20, 16, 19, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease;
}
.world:hover { transform: translateY(-4px); }
.world, .world:hover, .world:focus, .world:visited { text-decoration: none; color: inherit; }
.world-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.world-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.world-image img.warm-tone {
  filter: saturate(1.18) sepia(0.14) brightness(1.06) contrast(1.02) hue-rotate(-4deg);
}
/* Welten-Serie: einheitlicher warmer Kuratoren-Look über alle drei Bilder.
   Pro Bild leicht abweichend, damit alle drei dieselbe Mitte treffen —
   gleiche Wärme, ähnliche Helligkeit, vergleichbare Sättigung. */
.worlds-grid .world-image img {
  filter: saturate(1.10) brightness(1.02) contrast(1.04) hue-rotate(-3deg);
}
/* Restaurant — schon warm, nur leichter Hub */
.worlds-grid .world-tone-restaurant .world-image img {
  filter: saturate(1.08) brightness(1.02) contrast(1.05) hue-rotate(-3deg);
}
/* Studio — kühl/türkis, leicht wärmen + minimal heller */
.worlds-grid .world-tone-studio .world-image img {
  filter: saturate(1.10) brightness(1.05) contrast(1.04) hue-rotate(-6deg);
}
/* Catering — sehr dunkler Hintergrund, sehr satt: aufhellen, wärmen, leicht entsättigen */
.worlds-grid .world-tone-catering .world-image img {
  filter: saturate(0.88) brightness(1.14) contrast(0.98) hue-rotate(-10deg) sepia(0.08);
}
.world:hover .world-image img { transform: scale(1.05); }
.world-body {
  padding: 2rem 1.75rem 2.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.world-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bloom-coral);
  margin-bottom: 0.75rem;
}
.world h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--ink);
}
.world h3 em { font-style: italic; color: var(--bloom-coral); }
.world p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.78;
  margin-bottom: 1.5rem;
  flex: 1;
}
.world-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.35rem;
  align-self: flex-start;
  transition: gap 0.3s ease;
}
.world-link:hover { gap: 0.85rem; }

/* --- Portrait / We --- */
.wir {
  padding: 9rem 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.wir::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--ink);
  background-image: var(--wandbild-url, none);
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: blur(2px);
}
.wir-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.wir-text .eyebrow { display: block; margin-bottom: 1.5rem; }
.wir-text h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.05;
  margin-bottom: 2rem;
  color: var(--linen);
}
.wir-text h2 em { font-style: italic; color: var(--bloom-rose); }
.wir-text p {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--linen);
  opacity: 0.85;
  margin-bottom: 1.25rem;
  max-width: 34rem;
}
.wir-text blockquote {
  margin: 2.5rem 0 2.5rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--linen);
  opacity: 0.95;
}
.wir-text blockquote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.65;
}

/* Zwei versetzte Zitate (Tommy R. & Elli) */
.wir-quotes {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.wir-text .wir-quote {
  margin: 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--linen);
  opacity: 0.95;
  max-width: 30rem;
}
.wir-text .wir-quote-tommy {
  align-self: flex-start;
}
.wir-text .wir-quote-elli {
  align-self: flex-end;
  text-align: left;
  margin-left: 2.5rem;
}
.wir-text .wir-quote cite {
  display: block;
  margin-top: 0.85rem;
  font-style: normal;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  color: var(--gold);
}
@media (max-width: 760px) {
  .wir-text .wir-quote-elli {
    margin-left: 0;
  }
}
.wir-portraits {
  position: relative;
  height: 700px;
}
.wir-portrait {
  position: absolute;
  overflow: hidden;
  background: var(--ink-soft);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.wir-portrait img { width: 100%; height: 100%; object-fit: cover; }
.wir-portrait-1 {
  top: 0; left: 0;
  width: 65%;
  height: 420px;
}
.wir-portrait-2 {
  bottom: 0; right: 0;
  width: 60%;
  height: 380px;
}

/* --- Reservation block --- */
.reserve {
  padding: 8rem 0;
  background: var(--linen);
  color: var(--ink);
  position: relative;
}
.reserve-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.reserve .eyebrow { color: var(--bloom-coral); display: block; margin-bottom: 1.5rem; }
.reserve h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.reserve h2 em { font-style: italic; color: var(--bloom-coral); }
.reserve p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 2.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.reserve-hours {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 520px;
  margin: 3rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid rgba(20, 16, 19, 0.15);
}
.hours-block-title {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bloom-coral);
  margin-bottom: 1rem;
}
.hours-block p {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.7;
  opacity: 0.85;
  margin: 0;
}
.hours-block strong {
  font-weight: 500;
}

/* --- Footer --- */
.footer {
  background: var(--ink);
  color: var(--linen);
  padding: 5rem 0 2.5rem;
  border-top: 1px solid rgba(243, 236, 223, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 0.9fr 1.2fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
}
.footer-brand-col {
  max-width: 22rem;
}
.footer-brand {
  font-family: var(--display, var(--serif));
  font-style: normal;
  font-weight: 400;
  font-size: 2.2rem;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.footer-brand-sub {
  font-family: var(--accent, var(--serif));
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  opacity: 0.7;
}
.footer-signoff {
  font-family: var(--accent, var(--serif));
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.3;
  color: var(--gold);
  letter-spacing: -0.005em;
  max-width: 18rem;
}
.footer .footer-cta,
a.footer-cta {
  display: inline-block !important;
  margin-top: 1.25rem !important;
  padding: 0.7rem 1.6rem !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  background: transparent !important;
  font-family: var(--sans) !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  opacity: 1 !important;
}
.footer .footer-cta:hover,
a.footer-cta:hover {
  background: var(--gold) !important;
  color: var(--ink) !important;
}
@media (max-width: 900px) {
  .footer .footer-cta,
  a.footer-cta {
    display: block !important;
    text-align: center !important;
    max-width: 18rem;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
.footer-col h4 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  color: var(--linen);
  opacity: 0.75;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.3rem 0;
  transition: opacity 0.2s;
}
.footer-col a:hover { opacity: 1; }

.footer-address {
  font-style: normal;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.footer-hours {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  border-top: 1px solid rgba(243, 236, 223, 0.1);
}
.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(243, 236, 223, 0.08);
  font-size: 0.85rem;
}
.footer-hours-day {
  opacity: 0.65;
  letter-spacing: 0.04em;
}
.footer-hours-time {
  opacity: 0.95;
  font-variant-numeric: tabular-nums;
}
.footer-hours-closed .footer-hours-time {
  opacity: 0.55;
}
.footer-hours-closed .footer-hours-time em {
  font-family: var(--accent, var(--serif));
  font-style: italic;
}
.footer-link-arrow {
  position: relative;
  padding-left: 0 !important;
  font-size: 0.9rem !important;
}
.footer-link-arrow::after {
  content: " →";
  opacity: 0.5;
  transition: transform 0.2s;
  display: inline-block;
}
.footer-link-arrow:hover::after {
  transform: translateX(3px);
  opacity: 1;
}

.footer-newsletter {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(243, 236, 223, 0.1);
}
.footer-newsletter-label {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
  opacity: 0.85;
}
.footer-newsletter-row {
  display: flex;
  border-bottom: 1px solid rgba(243, 236, 223, 0.25);
  transition: border-color 0.2s;
}
.footer-newsletter-row:focus-within {
  border-bottom-color: var(--gold);
}
.footer-newsletter-input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 0.55rem 0;
  color: var(--linen);
  font-family: var(--sans);
  font-size: 0.92rem;
  outline: none;
}
.footer-newsletter-input::placeholder {
  color: rgba(243, 236, 223, 0.4);
  font-style: italic;
}
.footer-newsletter-btn {
  background: transparent;
  border: 0;
  color: var(--gold);
  cursor: pointer;
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
  transition: transform 0.2s;
}
.footer-newsletter-btn:hover {
  transform: translateX(3px);
}
.footer-newsletter-msg {
  display: block;
  font-family: var(--accent, var(--serif));
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold);
  margin-top: 0.6rem;
  min-height: 1.2em;
}

.footer-bottom {
  border-top: 1px solid rgba(243, 236, 223, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  opacity: 0.55;
  letter-spacing: 0.04em;
}
.footer-bottom a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-bottom a:hover { opacity: 1; }
  padding: 5rem 0 2.5rem;
  border-top: 1px solid rgba(243, 236, 223, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.25rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  opacity: 0.75;
  line-height: 1.5;
  max-width: 22rem;
}
.footer-col h4 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col a, .footer-col p {
  display: block;
  color: var(--linen);
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.9;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(243, 236, 223, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  opacity: 0.55;
  flex-wrap: wrap;
  gap: 1rem;
}

/* --- Responsive --- */
@media (max-width: 960px) {
  /* nav-links Mobile-Overlay-Definition steht oben in der Hamburger-Sektion */

  .welcome-inner,
  .menu-inner,
  .wir-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .welcome-image img { height: 420px; }
  .menu-image img { height: 440px; }
  .wir-portraits { height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .wir-portrait { position: relative; width: 100%; height: 320px; }
  .wir-portrait-1, .wir-portrait-2 { top: auto; bottom: auto; left: auto; right: auto; }

  .plate-a, .plate-b { grid-column: 1 / 13; height: 360px; }
  .plate-c, .plate-d, .plate-e { grid-column: 1 / 13; height: 300px; }

  .worlds-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .container, .container-narrow { padding: 0 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { display: none; }
  .awards-inner { flex-direction: column; gap: 1.5rem; }
  .award-divider { display: none; }
}

/* ============================================================
   SANS-SERIF OVERRIDES — Hauptschrift Sans, Serif-Italic als Akzent
   ============================================================ */

/* Navigation: Logo wird Sans (mit Gewicht), nicht mehr kursives Serif */
.nav-brand {
  font-family: var(--display);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: 1.35rem;
}

/* Font-Picker Toggle: Buchstabe ist Sans, nicht Serif-Kursiv */
.font-picker-current {
  font-family: var(--display);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
}

/* Hero — das Hauptstück */
.hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(3.25rem, 9.5vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
}
.hero h1 em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.01em;
  /* optisch leicht größer, weil Serif-Italic meist kleiner wirkt */
  font-size: 1.08em;
}
.hero-sub {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.55;
  letter-spacing: -0.005em;
  opacity: 0.78;
}
.hero-sub em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  color: var(--linen);
  opacity: 1;
}

/* Welcome Section */
.welcome-text h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.welcome-text h2 em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  font-size: 1.08em;
}
.welcome-signature {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0;
}

/* Awards (auf Linen) */
.award-title {
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.award-title em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  font-size: 1.08em;
}

/* Plates */
.plates-header h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.plates-header h2 em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  font-size: 1.06em;
}
.plates-header p {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.55;
  letter-spacing: -0.005em;
  opacity: 0.75;
}
.plates-header p em {
  font-family: var(--accent);
  font-style: italic;
  opacity: 1;
}
.plate-caption {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.plate-caption em {
  font-family: var(--accent);
  font-style: italic;
}
.plate-placeholder-label {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Menu/Karte */
.menu-text h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.menu-text h2 em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  font-size: 1.08em;
}
.menu-list-title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: -0.005em;
}
.menu-list-title em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
}
.menu-list-price {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

/* Worlds / Welten */
.worlds-header h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.worlds-header h2 em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  font-size: 1.06em;
}
.worlds-header p {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.55;
  opacity: 0.75;
}
.worlds-header p em {
  font-family: var(--accent);
  font-style: italic;
  opacity: 1;
}
.world h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: -0.015em;
}
.world h3 em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  font-size: 1.08em;
}

/* Wir / Team */
.wir-text h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.wir-text h2 em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  font-size: 1.08em;
}
.wir-quote {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.4;
  letter-spacing: 0;
  border-left-width: 1px;
}

/* Reserve */
.reserve h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.reserve h2 em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  font-size: 1.08em;
}
.reserve p {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.55;
  opacity: 0.82;
}
.reserve p em {
  font-family: var(--accent);
  font-style: italic;
  opacity: 1;
}

/* Footer */
.footer-brand {
  font-family: var(--display);
  font-style: normal;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: -0.03em;
}
.footer-tagline {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.5;
}

/* Buttons: Sans bleibt Sans, etwas straffer */
.btn {
  font-family: var(--sans);
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  font-weight: 500;
}

/* Generisches: wo immer ein <em> in laufendem Text steht — Serif-Italic */
p em,
li em,
span em {
  font-family: var(--accent);
  font-style: italic;
}

/* Syne ist ein ganz anderes Tier — braucht korrigierte Größen (etwas kleiner, weil breit) */
body[data-font="i"] .hero h1 { font-size: clamp(3rem, 8.5vw, 7.5rem); letter-spacing: -0.04em; }
body[data-font="i"] .welcome-text h2,
body[data-font="i"] .menu-text h2,
body[data-font="i"] .wir-text h2,
body[data-font="i"] .plates-header h2,
body[data-font="i"] .worlds-header h2 { letter-spacing: -0.035em; }

/* Space Grotesk — etwas weniger tight */
body[data-font="g"] .hero h1 { letter-spacing: -0.025em; }

/* ============================================================
   HERO v2 — Mutige Typografie mit Manrope + Serif-Italic-Akzent
   ============================================================ */

/* Drei-Säulen-Navigation oben im Hero */
.hero-pillars {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 5rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--linen);
  opacity: 0.82;
}
.hero-pillar { color: var(--gold); }
.hero-pillar-sep { opacity: 0.35; font-weight: 300; }

/* H1 — dreigeteilt, asymmetrisch, mit wachsender Serif-Kursive */
.hero-h1 {
  display: block;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(3rem, 8.5vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--linen);
  margin-bottom: 2.75rem;
  max-width: 18ch;
}
.hero-h1 .hero-line-1,
.hero-h1 .hero-line-2,
.hero-h1 .hero-line-3 {
  display: block;
}
.hero-h1 .hero-line-2 {
  padding-left: 2.2em;
  opacity: 0.65;
  font-weight: 200;
  font-size: 0.5em;
  letter-spacing: 0.01em;
  margin-top: 0.15em;
}
.hero-h1 .hero-line-3 {
  padding-left: 0.6em;
}
.hero-h1 em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  /* optisch größer — Serif-Italic ist das Star-Wort */
  font-size: 1.15em;
  letter-spacing: -0.015em;
}

/* Sub-Paragraph */
.hero .hero-sub {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--linen);
  opacity: 0.78;
  max-width: 34rem;
  margin-bottom: 3rem;
}
.hero .hero-sub em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  font-size: 1.18em;
  letter-spacing: 0.07em;
  opacity: 1;
}

/* Meta rechts unten — zweizeilig */
.hero-meta {
  right: 2rem;
  bottom: 3rem;
  text-align: right;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--linen);
  line-height: 2.1;
}
.hero-meta-line { display: block; }
.hero-meta-faint { opacity: 0.5; font-weight: 400; }

/* Awards-Line — EINE laufende Zeile statt vier Boxes */
.awards {
  background: var(--ink);
  border-top: 1px solid rgba(243, 236, 223, 0.08);
  border-bottom: 1px solid rgba(243, 236, 223, 0.08);
  padding: 2rem 0;
}
.awards-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.9rem 1.1rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--linen);
  opacity: 0.92;
}
.awards-prefix {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.95;
  margin-right: 0.4rem;
}
.awards-item {
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.awards-item em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  color: var(--linen);
  font-size: 1.1em;
  margin-right: 0.05em;
}
.awards-dot {
  opacity: 0.35;
  font-weight: 300;
}

/* Awards Mobile — stapelt untereinander */
@media (max-width: 720px) {
  .awards-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .awards-dot { display: none; }
  .awards-prefix { margin-bottom: 0.25rem; }
}

/* Hero Mobile: Zeilen nicht eingezogen */
@media (max-width: 760px) {
  .hero-h1 .hero-line-2 { padding-left: 0; }
  .hero-h1 .hero-line-3 { padding-left: 0; }
  .hero-h1 { max-width: 100%; }
  .hero-pillars { font-size: 0.65rem; gap: 0.6rem; }
}

/* ============ FINDEN — Standort & Öffnungszeiten ============ */
.finden {
  padding: 9rem 0;
  background: var(--paper);
  color: var(--ink);
  position: relative;
}
.finden-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 5rem;
}
.finden-head .eyebrow {
  color: var(--bloom-coral);
  display: block;
  margin-bottom: 1.25rem;
}
.finden-head h2 {
  font-family: var(--display, var(--serif));
  font-weight: 300;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.finden-head h2 em {
  font-family: var(--accent, var(--serif));
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.finden-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 4.5rem;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}

/* --- Karte (gezeichnet) --- */
.finden-map {
  position: relative;
}
.finden-map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  background: var(--linen);
  border: 1px solid rgba(20, 16, 19, 0.12);
  box-shadow: 0 24px 60px -32px rgba(20, 16, 19, 0.25);
  overflow: hidden;
}
.finden-map-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.finden-map-svg .map-label-park,
.finden-map-svg .map-label-place,
.finden-map-svg .map-label-castle,
.finden-map-svg .map-label-street,
.finden-map-svg .map-label-street-our,
.finden-map-svg .map-label-here,
.finden-map-svg .map-label-here-sub,
.finden-map-svg .map-compass {
  font-family: var(--sans);
  fill: var(--ink);
}
.finden-map-svg .map-label-park {
  font-size: 14px;
  font-style: italic;
  font-family: var(--accent, var(--serif));
  fill: rgba(20, 16, 19, 0.55);
  letter-spacing: 0.02em;
}
.finden-map-svg .map-label-place {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  fill: rgba(20, 16, 19, 0.55);
}
.finden-map-svg .map-label-castle {
  font-size: 13px;
  font-style: italic;
  font-family: var(--accent, var(--serif));
  fill: rgba(20, 16, 19, 0.75);
}
.finden-map-svg .map-label-street {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  fill: rgba(20, 16, 19, 0.42);
}
.finden-map-svg .map-label-street-our {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  fill: var(--gold);
  font-weight: 600;
}
.finden-map-svg .map-label-here {
  font-family: var(--accent, var(--serif));
  font-style: italic;
  font-size: 24px;
  fill: var(--ink);
  font-weight: 400;
}
.finden-map-svg .map-label-here-sub {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  fill: rgba(20, 16, 19, 0.55);
}
.finden-map-svg .map-compass {
  font-size: 9px;
  letter-spacing: 0.18em;
  fill: rgba(20, 16, 19, 0.5);
}
.finden-map-svg .map-pin circle:nth-child(1) {
  animation: mapPinPulse 2.6s ease-in-out infinite;
  transform-origin: 660px 219px;
}
@keyframes mapPinPulse {
  0%, 100% { transform: scale(1); opacity: 0.18; }
  50%      { transform: scale(1.25); opacity: 0.05; }
}
.finden-route-btn {
  margin-top: 1.5rem;
  display: inline-block;
}

/* --- Info-Spalte --- */
.finden-info {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}
.finden-block {
  border-top: 1px solid rgba(20, 16, 19, 0.18);
  padding-top: 1.75rem;
}
.finden-block-title {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.finden-address {
  font-family: var(--serif);
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 1rem;
}
.finden-block-note {
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.7;
  margin: 0;
  max-width: 38ch;
}
.finden-hours {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.finden-hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px dotted rgba(20, 16, 19, 0.18);
}
.finden-hours li:last-child {
  border-bottom: none;
}
.finden-hours-day {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.85;
}
.finden-hours-time {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  text-align: right;
}
.finden-hours-time em {
  font-family: var(--accent, var(--serif));
  font-style: italic;
  color: var(--gold);
  font-size: 1.1em;
}
.finden-hours-closed .finden-hours-day {
  opacity: 0.55;
}
.finden-contact-line {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(20, 16, 19, 0.18);
  padding: 0.6rem 0;
  transition: color 0.2s, border-color 0.2s;
}
.finden-contact-line:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.finden-contact-line:last-child {
  border-bottom: none;
}

/* Mobile */
@media (max-width: 900px) {
  .finden { padding: 6rem 0; }
  .finden-head { margin-bottom: 3.5rem; }
  .finden-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .finden-info {
    gap: 2.25rem;
  }
}



/* --- Napkin breath (zwischen den Sektionen) --- */
.napkin-breath {
  background: var(--paper);
  padding: 6rem 0 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}
.napkin-breath-image {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.napkin-breath-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
}
.napkin-breath-quote {
  padding: 0 clamp(2rem, 8vw, 6rem);
  max-width: 36rem;
}
.napkin-breath-quote .eyebrow {
  display: block;
  font-family: var(--serif, "Fraunces", Georgia, serif);
  font-style: italic;
  font-size: 2rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold);
  opacity: 1;
  margin-bottom: 1.5rem;
}
.napkin-breath-quote .eyebrow-mark {
  margin-bottom: 1.75rem;
}
.napkin-breath-quote .eyebrow-mark img {
  display: block;
  height: 56px;
  width: auto;
  opacity: 0.95;
}
.napkin-breath-quote p {
  font-family: var(--serif, "Fraunces", Georgia, serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}
.napkin-breath-quote p em {
  font-style: italic;
  color: var(--gold);
}
@media (max-width: 900px) {
  .napkin-breath { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 0; }
  .napkin-breath-image { height: 360px; }
  .napkin-breath-quote {
    padding: 0 1.5rem !important;
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 100% !important;
  }
  .napkin-breath-quote .eyebrow,
  .napkin-breath-quote .eyebrow-mark {
    display: block !important;
    text-align: center !important;
  }
  .napkin-breath-quote .eyebrow-mark img {
    display: block !important;
    margin: 0 auto !important;
  }
  .napkin-breath-quote p {
    text-align: center !important;
    margin: 0 auto !important;
  }
}

/* === Logo-Bilder (ersetzen Schriftzug-Brand) === */
.nav-brand {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0;
  text-decoration: none;
  line-height: 1;
}
.nav-brand-logo {
  display: block;
  height: 56px;
  width: auto;
  /* Bewahrt die feinen Antialiasing-Kanten */
  image-rendering: -webkit-optimize-contrast;
}
@media (max-width: 760px) {
  .nav-brand-logo { height: 42px; }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
}
.footer-brand-logo {
  display: block;
  height: 56px;
  width: auto;
  margin-bottom: 0.2rem;
  image-rendering: -webkit-optimize-contrast;
}
.footer-brand-sub {
  font-family: var(--accent, var(--serif));
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.03em;
  line-height: 1;
}
@media (max-width: 760px) {
  .footer-brand-logo { height: 48px; }
}

/* ============================================================
   MOBILE-FEINSCHLIFF — kompakter Block für ALLE Mobile-Probleme
   Stand 28.04. — alle Brustpunkte zentral hier
   ============================================================ */

/* ----- 600px (echtes Phone) — der wichtigste Breakpoint ----- */
@media (max-width: 600px) {
  /* Hero-Säulen NICHT verkleinern — bei 11px wirds unlesbar */
  .hero-pillars {
    font-size: 0.7rem;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .hero-pillar-sep { display: inline; }
  
  /* Sektion-Paddings reduzieren */
  .welcome { padding: 5rem 0; }
  .menu-block { padding: 5rem 0; }
  .napkin-breath { padding: 4rem 0 !important; }
  .worlds { padding: 5rem 0; }
  .wir { padding: 5rem 0; }
  .finden { padding: 5rem 0; }
  
  /* Plates Sektion: alle Plates untereinander */
  .plates-grid { grid-template-columns: 1fr !important; gap: 1rem !important; padding: 4rem 1.25rem !important; }
  .plate-a, .plate-b, .plate-c, .plate-d, .plate-e {
    grid-column: 1 !important;
    height: 280px !important;
  }
  
  /* Bilder in Sektionen kompakter */
  .welcome-image img { height: 320px !important; }
  .menu-image img { height: 320px !important; }
  .napkin-breath-image { height: 280px !important; }
  
  /* Wir-Portraits: 1 Spalte statt 2 wäre eng — bleiben 2 Spalten, aber kompakter */
  .wir-portraits { grid-template-columns: 1fr 1fr !important; gap: 0.75rem !important; }
  .wir-portrait { height: 220px !important; }
  
  /* Worlds-Cards kompakter */
  .worlds-grid .world-image { height: 280px; }
  
  /* Awards: Single Column */
  .awards-line { font-size: 0.7rem; gap: 0.5rem !important; }
  .awards-inner { padding: 1.5rem 0; }
  
  /* Footer Bottom: Sub-text in zwei Zeilen */
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    font-size: 0.7rem;
  }
  
  /* Buttons mindestens 44px hoch */
  .btn, button[type="submit"], .nav-book, .cta-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  /* H2-Headlines auf Sektionen kleiner */
  h2, .section-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem) !important;
  }
  
  /* Hero-Sub-Text */
  .hero-sub, .hero p {
    font-size: 0.95rem;
    line-height: 1.55;
  }
  
  /* Anfahrtskarte: mobiler Anpassungspunkt */
  .finden-map { transform: scale(0.85); transform-origin: top left; }
  
  /* Container-Padding reduzieren auf Mini-Phones */
  .container, .container-narrow { padding: 0 1rem !important; }
}

/* ----- 420px (Mini-Phones, iPhone SE etc.) ----- */
@media (max-width: 420px) {
  /* Hero-Sub noch kleiner */
  .hero-pillars { font-size: 0.65rem; }
  
  /* Welcome / Menu Inner: Spacing reduzieren */
  .welcome-inner, .menu-inner { gap: 2rem !important; }
  
  /* Plates noch flacher */
  .plate-a, .plate-b, .plate-c, .plate-d, .plate-e { height: 240px !important; }
  
  /* Bilder noch kleiner */
  .welcome-image img { height: 280px !important; }
  .menu-image img { height: 280px !important; }
  
  /* Footer-Brand-Sub umbrechen lassen */
  .footer-brand-sub { font-size: 0.9rem; }
}



/* === Start-Link nur in Mobil-Navigation anzeigen === */
.nav-mobile-only { display: none; }
@media (max-width: 960px) {
  .nav-mobile-only { display: block; }
}
