/* Restaurant Lehenmatt â€” Quartier-Osteria
   Warmes Papier Â· Espresso-Tinte Â· ein Terracotta-Akzent Â· scharfe Kanten
   Schriften lokal: Cormorant Garamond (Display) + Libre Baskerville (Text) */

:root {
  /* Espresso-Tinte â€” warmes Fast-Schwarz (Text + dunkle FlÃ¤chen) */
  --ink: #241d16;
  --ink-2: #463a2d;
  --ink-3: #6d5f4f;
  --muted: #8b7c69;

  /* Weisser Hintergrund + neutrale Hairlines */
  --bg: #ffffff;
  --bg-2: #ffffff;
  --bg-3: #f5f4f2;
  --border: #e7e4df;
  --border-strong: #d4d0c9;

  /* Logo-/FC-Basel-Akzente â€” Rot primÃ¤r, Blau fÃ¼r Labels & Links */
  --accent: #cf152b;
  --accent-deep: #21478a;
  --accent-soft: #e7d9bf;
  --red-deep: #a31020;

  /* Legacy-Aliasse, damit bestehende Regeln weiter auflÃ¶sen */
  --amber: var(--accent);
  --amber-deep: var(--accent-deep);
  --amber-soft: var(--accent-soft);
  --gold: #e0a30c;
  --gold-deep: #b8830a;

  --danger: #9c3a22;
  --success: #4d6a3c;

  --radius: 0px;
  --radius-sm: 0px;
  --shadow-soft: none;
  --shadow-card: none;

  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: "Libre Baskerville", Georgia, "Times New Roman", serif;

  --container: 1180px;
  --container-narrow: 880px;
}

/* === Lokale Schriften === */
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal; font-weight: 400; font-display: swap;
  src: url("fonts/cormorant-garamond-400.ttf") format("truetype");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal; font-weight: 500; font-display: swap;
  src: url("fonts/cormorant-garamond-500.ttf") format("truetype");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal; font-weight: 600; font-display: swap;
  src: url("fonts/cormorant-garamond-600.ttf") format("truetype");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal; font-weight: 700; font-display: swap;
  src: url("fonts/cormorant-garamond-700.ttf") format("truetype");
}
@font-face {
  font-family: "Libre Baskerville";
  font-style: normal; font-weight: 400; font-display: swap;
  src: url("fonts/libre-baskerville-400.ttf") format("truetype");
}
@font-face {
  font-family: "Libre Baskerville";
  font-style: normal; font-weight: 700; font-display: swap;
  src: url("fonts/libre-baskerville-700.ttf") format("truetype");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Dezente Papier-KÃ¶rnung Ã¼ber der ganzen Seite */
body::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  content: "";
  inset: 0;
  mix-blend-mode: multiply;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  z-index: 9999;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(33, 71, 138, 0.4);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

a:hover {
  color: var(--accent-deep);
  text-decoration-color: var(--accent);
}

h1, h2, h3, h4 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

.lm-eyebrow {
  color: var(--accent-deep);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  margin: 0 0 16px;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.lm-divider {
  background: var(--accent);
  border: 0;
  height: 2px;
  margin: 0 0 22px;
  width: 48px;
}

/* === Container === */
.lm-container {
  margin: 0 auto;
  max-width: var(--container);
  padding: 0 28px;
  width: 100%;
}

.lm-container--narrow {
  max-width: var(--container-narrow);
}

/* === Skip to main === */
.lm-skip {
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  left: 8px;
  padding: 10px 14px;
  position: absolute;
  text-decoration: none;
  top: -100px;
  transition: top 0.18s ease;
  z-index: 100;
}

.lm-skip:focus {
  top: 8px;
}

/* === Top bar === */
.lm-strip {
  background: var(--ink);
  border-top: 3px solid var(--accent);
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.lm-strip__inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--container);
  padding: 10px 28px;
}

.lm-strip a {
  color: #fff;
  text-decoration: none;
}

.lm-strip a:hover {
  color: var(--accent-soft);
}

.lm-strip__dot {
  color: var(--gold);
  margin: 0 6px;
}

/* === Header === */
.lm-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(120%) blur(8px);
  -webkit-backdrop-filter: saturate(120%) blur(8px);
  border-bottom: 1px solid transparent;
  position: sticky;
  top: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
  z-index: 50;
}

.lm-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: var(--border);
}

.lm-header__inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--container);
  padding: 16px 28px;
}

.lm-brand {
  align-items: center;
  display: inline-flex;
  text-decoration: none;
}

.lm-brand__logo {
  display: block;
  height: 60px;
  width: auto;
}

/* Typografischer Schriftzug statt Bild-Logo */
.lm-wordmark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.lm-wordmark__name {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.lm-wordmark__sub {
  color: var(--accent-deep);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  margin-top: 7px;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .lm-brand__logo {
    height: 46px;
  }

  .lm-wordmark__name {
    font-size: 25px;
  }

  .lm-wordmark__sub {
    font-size: 8px;
    letter-spacing: 0.24em;
  }
}

.lm-nav {
  align-items: center;
  display: flex;
  gap: 30px;
}

.lm-nav a {
  color: var(--ink-2);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}

.lm-nav a:hover {
  color: var(--accent-deep);
}

.lm-nav a[aria-current="page"] {
  color: var(--ink);
}

.lm-nav a[aria-current="page"]::after {
  background: var(--accent);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
}

.lm-nav__cta {
  background: var(--accent);
  color: #fff !important;
  padding: 11px 20px;
  transition: background 0.18s ease;
}

.lm-nav__cta:hover {
  background: var(--red-deep);
  color: #fff !important;
}

.lm-nav__cta[aria-current="page"]::after {
  display: none;
}

.lm-nav-toggle {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--ink);
  cursor: pointer;
  display: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 10px 14px;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .lm-nav-toggle {
    display: inline-flex;
  }

  .lm-nav {
    background: var(--bg-2);
    border: 1px solid var(--border);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 16px;
    padding: 6px 14px;
    position: absolute;
    right: 16px;
    top: calc(100% + 6px);
  }

  .lm-nav.is-open {
    display: flex;
  }

  .lm-nav a {
    border-bottom: 1px solid var(--border);
    padding: 16px 4px;
    width: 100%;
  }

  .lm-nav a:last-child {
    border-bottom: 0;
  }

  .lm-nav a[aria-current="page"]::after {
    display: none;
  }

  .lm-nav__cta {
    margin-top: 8px;
    text-align: center;
  }
}

/* === Buttons === */
.lm-btn {
  align-items: center;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  gap: 9px;
  justify-content: center;
  letter-spacing: 0.14em;
  padding: 15px 28px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.lm-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.lm-btn--amber {
  background: var(--accent);
  border-color: var(--accent);
}

.lm-btn--amber:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
}

.lm-btn--ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.lm-btn--ghost:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.lm-btn--link {
  background: transparent;
  border-color: transparent;
  color: var(--ink);
  letter-spacing: 0.12em;
  padding: 8px 0;
}

.lm-btn--link:hover {
  background: transparent;
  border-color: transparent;
  color: var(--accent-deep);
}

.lm-btn--link::after {
  content: "â†’";
  font-size: 15px;
  transition: transform 0.18s ease;
}

.lm-btn--link:hover::after {
  transform: translateX(5px);
}

.lm-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* === GloriaFood-Trigger (Bestellen/Reservieren via externem Widget) ===
   Trigger sind eigene <button>-Elemente mit data-glf-* â€” ewm2.js bindet den Klick
   an [data-glf-cuid], daher voller Osteria-Look statt GloriaFood-Standard-Skin. */

button.lm-btn {
  font-family: var(--font-body);
  line-height: 1;
}

/* Kompakte Nav-Trigger im Stil von .lm-nav__cta */
.lm-nav__btn {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #fff;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  padding: 11px 20px;
  text-transform: uppercase;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.lm-nav__btn:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  color: #fff;
}

.lm-nav__btn--ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--ink);
}

.lm-nav__btn--ghost:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

@media (max-width: 860px) {
  .lm-nav__btn {
    margin-top: 8px;
    text-align: center;
    width: 100%;
  }

  .lm-nav__btn + .lm-nav__btn {
    margin-top: 10px;
  }
}

/* === Hero === */
.lm-hero {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.lm-hero__inner {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: 1.25fr 1fr;
  margin: 0 auto;
  max-width: var(--container);
  padding: 92px 28px 100px;
}

.lm-hero__title {
  font-size: clamp(46px, 7vw, 86px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 0.98;
  margin: 14px 0 26px;
  overflow-wrap: break-word;
}

.lm-hero__title em {
  color: var(--accent-deep);
  font-style: italic;
  font-weight: 600;
}

.lm-hero__lead {
  color: var(--ink-3);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 34px;
  max-width: 52ch;
}

.lm-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.lm-hero__showcase {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.lm-hero__photo {
  aspect-ratio: 4 / 3;
  background: var(--bg-3);
  border: 1px solid var(--border-strong);
  margin: 0;
  overflow: hidden;
}

.lm-hero__photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.lm-hero__card {
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  padding: 34px 32px;
  position: relative;
}

.lm-hero__card::before {
  background: var(--accent);
  content: "";
  height: 2px;
  left: 32px;
  position: absolute;
  right: 32px;
  top: 0;
}

.lm-hero__card h2 {
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 24px;
}

.lm-meta-list {
  display: grid;
  gap: 20px;
  margin: 0;
}

.lm-meta-list dt {
  color: var(--accent-deep);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lm-meta-list dd {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
  margin: 6px 0 0;
}

.lm-meta-list dd a {
  color: var(--ink);
  font-weight: 700;
}

/* === Features strip === */
.lm-features {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.92);
}

.lm-features__inner {
  display: grid;
  gap: 28px 36px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 0 auto;
  max-width: var(--container);
  padding: 48px 28px;
}

.lm-feature {
  align-items: baseline;
  display: flex;
  gap: 18px;
}

.lm-feature__icon {
  background: transparent;
  border-radius: 0;
  color: var(--gold);
  display: inline-block;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 500;
  height: auto;
  line-height: 0.8;
  width: auto;
}

.lm-feature__title {
  color: #fff;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0 0 4px;
}

.lm-feature__text {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* === Sections === */
.lm-section {
  padding: 104px 0;
}

.lm-section--tight {
  padding: 68px 0;
}

.lm-section--alt {
  background: var(--bg-3);
}

.lm-section__head {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 60px;
}

.lm-section__head h2 {
  font-size: clamp(34px, 4.4vw, 50px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 4px 0 0;
  overflow-wrap: break-word;
}

.lm-section__head p {
  color: var(--ink-3);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
  max-width: 50ch;
}

@media (max-width: 720px) {
  .lm-section__head {
    grid-template-columns: 1fr;
  }
}

/* === Split (intro) === */
.lm-split {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: 1.05fr 1fr;
}

.lm-split__copy h2,
.lm-intro h2 {
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 600;
  margin: 0 0 22px;
  overflow-wrap: break-word;
}

.lm-split__copy p,
.lm-intro p {
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 18px;
}

.lm-intro {
  text-align: left;
}

.lm-intro .lm-btn-row {
  margin-top: 20px;
}

.lm-split__visual {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}

.lm-tile {
  align-items: center;
  background: linear-gradient(160deg, #3a2c1f 0%, #241d16 60%, #1a140e 100%);
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
  padding: 36px 32px;
  position: relative;
  width: 100%;
}

.lm-tile::before {
  background: var(--accent);
  content: "";
  height: 56px;
  position: absolute;
  right: 32px;
  top: 32px;
  width: 3px;
}

.lm-tile__eyebrow {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.lm-tile__title {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.05;
  margin: 0;
}

@media (max-width: 860px) {
  .lm-split {
    grid-template-columns: 1fr;
  }

  .lm-split__visual {
    aspect-ratio: 16 / 11;
    order: -1;
  }
}

/* === Three column cards === */
.lm-cards {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.lm-card {
  background: transparent;
  border-top: 2px solid var(--ink);
  display: flex;
  flex-direction: column;
  padding: 28px 32px 32px 0;
  position: relative;
}

.lm-card + .lm-card {
  padding-left: 32px;
}

.lm-card__num {
  color: var(--accent-deep);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.lm-card h3 {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 14px;
}

.lm-card p {
  color: var(--ink-3);
  flex-grow: 1;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 26px;
}

@media (max-width: 760px) {
  .lm-card,
  .lm-card + .lm-card {
    padding: 24px 0 28px;
  }
}

/* === Public gallery === */
.lm-gallery-section {
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.lm-gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.lm-gallery__item {
  margin: 0;
  min-width: 0;
}

.lm-gallery__media {
  background: var(--bg-3);
  border: 1px solid var(--border-strong);
  overflow: hidden;
}

.lm-gallery__media--square {
  aspect-ratio: 1 / 1;
}

.lm-gallery__media--portrait {
  aspect-ratio: 3 / 4;
}

.lm-gallery__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.lm-gallery__item figcaption {
  color: var(--ink-3);
  font-size: 12px;
  line-height: 1.45;
  margin-top: 10px;
}

@media (max-width: 520px) {
  .lm-gallery {
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lm-gallery__item figcaption {
    font-size: 11px;
    line-height: 1.4;
    margin-top: 8px;
  }
}

@media (max-width: 380px) {
  .lm-gallery {
    grid-template-columns: 1fr;
  }
}

/* === Mittagsmenue page === */
.lm-lunch {
  padding: 84px 0 100px;
}

.lm-lunch__head {
  margin-bottom: 52px;
  max-width: 720px;
}

.lm-lunch__title {
  font-size: clamp(40px, 6vw, 66px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 14px 0 22px;
}

.lm-lunch__lead {
  color: var(--ink-3);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 30px;
}

.lm-lunch__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.lm-menu-card {
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  margin-bottom: 52px;
  overflow: hidden;
  position: relative;
}

.lm-menu-card__ribbon {
  align-items: center;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 16px;
  justify-content: space-between;
  letter-spacing: 0.06em;
  padding: 14px 36px;
  text-transform: uppercase;
}

.lm-menu-card__ribbon strong {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.lm-menu-card__ribbon .dot {
  color: var(--gold);
}

.lm-menu-card__body {
  padding: 48px 44px 44px;
}

.lm-menu-card__intro {
  align-items: baseline;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 38px;
  padding-bottom: 30px;
}

.lm-menu-card__intro h2 {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 600;
  margin: 6px 0 0;
}

.lm-menu-card__intro p {
  color: var(--ink-3);
  font-size: 14px;
  margin: 0;
  max-width: 36ch;
}

.lm-menu {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
}

.lm-menu__item {
  border-top: 1px solid var(--border);
  padding: 26px 4px;
}

.lm-menu__item:first-child {
  border-top: 0;
  padding-top: 4px;
}

.lm-menu__item--feature {
  background: linear-gradient(180deg, rgba(207, 21, 43, 0.06) 0%, transparent 100%);
  border-top: 2px solid var(--accent);
  margin-top: 14px;
  padding: 28px 22px 26px;
}

.lm-menu__item-head {
  align-items: baseline;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 8px;
}

.lm-menu__label {
  color: var(--accent-deep);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lm-menu__price {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 21px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.lm-menu__title {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

.lm-menu__item--feature .lm-menu__title {
  font-size: 30px;
}

.lm-menu__line {
  color: var(--ink-3);
  font-size: 14px;
  margin: 8px 0 0;
}

@media (max-width: 720px) {
  .lm-menu {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .lm-menu-card__body {
    padding: 34px 24px 30px;
  }

  .lm-menu-card__ribbon {
    padding: 12px 24px;
  }
}

.lm-weekend {
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  padding: 52px 40px;
  text-align: center;
}

.lm-weekend h2 {
  font-size: 36px;
  font-weight: 600;
  margin: 12px 0 14px;
}

.lm-weekend p {
  color: var(--ink-3);
  margin: 0 auto 24px;
  max-width: 50ch;
}

.lm-info-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr;
  margin-top: 60px;
}

.lm-info-grid > div {
  border-top: 2px solid var(--ink);
  padding: 26px 32px 8px 0;
}

.lm-info-grid > div + div {
  padding-left: 32px;
}

.lm-info-grid > div h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 14px;
}

.lm-info-grid p {
  color: var(--ink-3);
  margin: 0 0 12px;
}

@media (max-width: 720px) {
  .lm-info-grid {
    grid-template-columns: 1fr;
  }

  .lm-info-grid > div,
  .lm-info-grid > div + div {
    padding: 24px 0 8px;
  }
}

/* === Speisekarte page === */
.lm-menu-page {
  padding: 60px 0 88px;
}

.lm-menu-page__head {
  margin-bottom: 36px;
  max-width: 760px;
}

.lm-menu-page__head h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 14px 0 20px;
}

.lm-menu-page__head p {
  color: var(--ink-3);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.lm-cat-grid {
  display: grid;
  gap: 44px 56px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.lm-cat {
  border-top: 2px solid var(--ink);
  padding-top: 24px;
}

.lm-cat__header {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
}

.lm-cat__header h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
}

.lm-cat__num {
  color: var(--accent-deep);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lm-dish {
  border-bottom: 1px solid var(--border);
  display: grid;
  gap: 4px;
  grid-template-columns: 1fr auto;
  padding: 18px 0;
}

.lm-dish:last-child {
  border-bottom: 0;
}

.lm-dish__name {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.25;
}

.lm-dish__price {
  color: var(--accent-deep);
  font-family: var(--font-display);
  font-size: 20px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  white-space: nowrap;
}

.lm-dish__desc {
  color: var(--ink-3);
  font-size: 14px;
  grid-column: 1 / -1;
  margin: 0;
}

.lm-menu-page__footnote {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 2px solid var(--accent);
  color: var(--ink-3);
  font-size: 14px;
  margin-top: 56px;
  padding: 20px 24px;
}

/* === Datengetriebene Speisekarte (Track P0-7) === */
.lm-menu-cat {
  display: block;
}

.lm-menu-cat__desc {
  margin: -8px 0 18px;
  max-width: 60ch;
}

.lm-menu-item__price {
  font-variant-numeric: tabular-nums;
}

.lm-menu-variant,
.lm-menu-extra {
  grid-column: 1 / -1;
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
}

.lm-menu-variant li,
.lm-menu-extra li {
  font-variant-numeric: tabular-nums;
  line-height: 1.6;
}

.lm-menu-variant li {
  color: var(--ink-2);
}

.lm-menu-extra {
  color: var(--ink-3);
}

.lm-menu-extra li {
  display: inline-block;
  margin-right: 14px;
}

/* === Archiv-Block (frÃ¼here Karte als PDF, ohne Preise) === */
.lm-archive {
  border-top: 1px solid var(--border);
  margin-top: 56px;
  padding-top: 36px;
}

.lm-archive__note {
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 8px;
  max-width: 64ch;
}

/* === Trust (Google Bewertung) === */
.lm-trust {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  display: inline-flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 11px;
  margin-top: 28px;
  max-width: 100%;
  padding: 0;
}

.lm-trust__stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 0.08em;
}

.lm-trust strong {
  color: var(--ink);
  font-weight: 700;
}

/* === Menue Card Logo / Schriftzug === */
.lm-menu-card__logo {
  display: flex;
  justify-content: center;
  margin: -4px 0 30px;
  text-align: center;
}

.lm-menu-card__logo img {
  display: block;
  height: 140px;
  object-fit: contain;
  width: 140px;
}

.lm-menu-card__crest {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
}

.lm-menu-card__crest .name {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
}

.lm-menu-card__crest .sub {
  color: var(--accent-deep);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .lm-menu-card__logo img {
    height: 110px;
    width: 110px;
  }

  .lm-menu-card__crest .name {
    font-size: 34px;
  }
}

/* === Thanks & Imprint === */
.lm-thanks {
  max-width: 56ch;
  padding: 72px 0 100px;
}

.lm-thanks h1 {
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 14px 0 24px;
}

.lm-thanks p {
  color: var(--ink-3);
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 16px;
}

.lm-imprint {
  color: var(--ink);
}

.lm-imprint h2 {
  border-top: 1px solid var(--border);
  font-size: 24px;
  font-weight: 600;
  margin: 34px 0 12px;
  padding-top: 26px;
}

.lm-imprint h2:first-child {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}

.lm-imprint p {
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 8px;
}

.lm-imprint strong {
  color: var(--ink);
}

/* === Online-bestellen-Sektion (Speisekarte) === */

.lm-soon {
  align-items: flex-start;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-left: 2px solid var(--accent);
  display: flex;
  flex-direction: column;
  margin-top: 44px;
  padding: 40px 36px;
  position: relative;
}

.lm-soon h2 {
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}

.lm-soon p {
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 56ch;
}

/* === Speisekarte als PDF === */
.lm-pdf {
  margin: 36px 0 44px;
}

.lm-pdf__frame {
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-radius: 0;
  display: block;
  height: min(82vh, 1100px);
  width: 100%;
}

.lm-pdf__frame--mobile {
  display: none;
}

.lm-pdf__actions {
  margin-top: 26px;
}

/* Desktop: ganze PDF-Seite auf einen Blick (A4, zentriert, gross) */
@media (min-width: 721px) {
  .lm-pdf__frame--desktop {
    aspect-ratio: 1 / 1.414;
    height: min(80vh, 1120px);
    width: auto;
    max-width: 100%;
    margin-inline: auto;
  }
}

/* Mobile: unverÃ¤ndert â€” volle Breite mit Viewer-Toolbar */
@media (max-width: 720px) {
  .lm-pdf__frame--desktop {
    display: none;
  }
  .lm-pdf__frame--mobile {
    display: block;
    height: 78vh;
  }
}

/* === Coming soon panel === */
.lm-coming {
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  display: grid;
  gap: 0;
  grid-template-columns: 1.5fr 1fr;
  overflow: hidden;
  position: relative;
}

.lm-coming::before {
  background: var(--accent);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 2px;
}

.lm-coming__inner {
  padding: 50px 46px;
}

.lm-coming__inner h2 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 10px 0 18px;
}

.lm-coming__inner p {
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 56ch;
}

.lm-coming__side {
  background: var(--bg-3);
  border-left: 1px solid var(--border);
  padding: 46px 38px;
}

.lm-coming__side h3 {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.lm-coming__side ul {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lm-coming__side li {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}

.lm-coming__side li::before {
  background: var(--accent);
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 9px;
  width: 7px;
}

@media (max-width: 860px) {
  .lm-coming {
    grid-template-columns: 1fr;
  }

  .lm-coming__inner {
    padding: 38px 28px;
  }

  .lm-coming__side {
    border-left: 0;
    border-top: 1px solid var(--border);
    padding: 34px 28px;
  }
}

/* === Forms === */
.lm-form {
  display: grid;
  gap: 20px;
  max-width: 600px;
}

.lm-form__row {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.lm-field {
  display: grid;
  gap: 7px;
}

.lm-field label {
  color: var(--accent-deep);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lm-field input,
.lm-field textarea,
.lm-field select {
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-radius: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 15px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  width: 100%;
}

.lm-field input:focus,
.lm-field textarea:focus,
.lm-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(33, 71, 138, 0.18);
  outline: 0;
}

.lm-field textarea {
  min-height: 120px;
  resize: vertical;
}

.lm-form__note {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

/* === Contact / Reservation layout === */
.lm-contact {
  padding: 84px 0 100px;
}

.lm-contact__head {
  margin-bottom: 56px;
  max-width: 720px;
}

.lm-contact__head h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 14px 0 20px;
}

.lm-contact__grid {
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr 1.3fr;
}

.lm-contact__panel {
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  padding: 34px;
}

.lm-contact__panel h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 18px;
}

@media (max-width: 860px) {
  .lm-contact__grid {
    grid-template-columns: 1fr;
  }
}

/* === Footer === */
.lm-footer {
  background: var(--ink);
  border-top: 3px solid var(--accent-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 72px 0 26px;
}

.lm-footer__top {
  display: grid;
  gap: 44px;
  grid-template-columns: 1.4fr 1fr 1fr;
  margin: 0 auto;
  max-width: var(--container);
  padding: 0 28px 44px;
}

.lm-footer__brand h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 12px;
}

.lm-footer__brand p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  max-width: 38ch;
}

.lm-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.lm-footer ul {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lm-footer a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  text-decoration: none;
}

.lm-footer a:hover {
  color: var(--gold);
}

.lm-footer__bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 16px;
  justify-content: space-between;
  letter-spacing: 0.02em;
  margin: 0 auto;
  max-width: var(--container);
  padding: 26px 28px 0;
}

@media (max-width: 720px) {
  .lm-footer__top {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

/* === Admin === */
.lm-admin {
  background: var(--bg);
  min-height: 100vh;
  padding: 56px 0 80px;
}

.lm-admin__shell {
  margin: 0 auto;
  max-width: 880px;
  padding: 0 28px;
}

.lm-admin__card {
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  margin-bottom: 22px;
  padding: 34px;
}

.lm-admin__card h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 6px;
}

.lm-admin__card-head {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.lm-admin__card-head p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  max-width: 38ch;
}

.lm-admin__toolbar {
  align-items: center;
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-bottom: 22px;
  padding: 14px 18px;
}

.lm-admin__toolbar form {
  margin: 0;
}

.lm-alert {
  border-radius: 0;
  font-size: 14px;
  margin-bottom: 18px;
  padding: 14px 18px;
}

.lm-alert--success {
  background: rgba(77, 106, 60, 0.12);
  border: 1px solid rgba(77, 106, 60, 0.3);
  color: var(--success);
}

.lm-alert--error {
  background: rgba(156, 58, 34, 0.1);
  border: 1px solid rgba(156, 58, 34, 0.3);
  color: var(--danger);
}

.lm-admin__menu-block {
  border-top: 1px solid var(--border);
  margin-top: 22px;
  padding-top: 22px;
}

.lm-admin__menu-block-head {
  align-items: baseline;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.lm-admin__menu-block-head h3 {
  color: var(--accent-deep);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin: 0;
  text-transform: uppercase;
}

.lm-admin__price {
  max-width: 140px;
}

.lm-admin__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

/* === Utilities === */
.lm-spacer-sm { height: 16px; }
.lm-spacer-md { height: 32px; }
.lm-spacer-lg { height: 64px; }

@media (max-width: 720px) {
  .lm-hero__inner {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 56px 24px 64px;
  }

  .lm-section {
    padding: 68px 0;
  }

  .lm-container {
    padding: 0 20px;
  }
}

/* =====================================================================
   ADMIN-BACKOFFICE-SKIN â€” ruhige, operative Oberflaeche (Toast/Lightspeed-
   Richtung). ALLES streng unter .lm-admin gescoped: die oeffentliche Osteria-
   Seite (Serif, warmes Papier, rote Akzente) bleibt voellig unberuehrt.
   System-Sans, neutrales Grau, wenig Farbe, ruhige scharfe Linien, dichtere
   Abstaende. Hoehere Spezifitaet (.lm-admin X) schlaegt die globalen Regeln,
   unabhaengig von der Quelltext-Reihenfolge.
   ===================================================================== */
.lm-admin {
  --ad-bg: #eceef1;
  --ad-surface: #ffffff;
  --ad-surface-2: #f3f4f6;
  --ad-line: #aeb5c0;
  --ad-line-soft: #d1d5dc;
  --ad-line-strong: #747e8c;
  --ad-ink: #1e2430;
  --ad-ink-2: #464e5c;
  --ad-muted: #7a828f;
  --ad-primary: #cf152b;
  --ad-primary-deep: #a31020;
  --ad-dark: #262b34;
  --ad-focus: rgba(207, 21, 43, 0.20);
  --ad-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ocols: 140px 124px 104px minmax(110px, 1fr) 128px 84px 96px;

  background: var(--ad-bg);
  color: var(--ad-ink);
  font-family: var(--ad-sans);
  font-size: 15px;
  line-height: 1.55;
  padding: 0 0 64px;
}

.lm-admin p, .lm-admin li, .lm-admin span, .lm-admin a,
.lm-admin td, .lm-admin th, .lm-admin dt, .lm-admin dd,
.lm-admin label, .lm-admin input, .lm-admin textarea,
.lm-admin select, .lm-admin button {
  font-family: var(--ad-sans);
}

.lm-admin h1, .lm-admin h2, .lm-admin h3, .lm-admin h4 {
  color: var(--ad-ink);
  font-family: var(--ad-sans);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

/* --- Kopfleiste + Tab-Navigation (schlank, ruhig, sticky) --- */
.lm-adminbar {
  background: var(--ad-surface);
  border-bottom: 1px solid var(--ad-line);
  position: sticky;
  top: 0;
  z-index: 30;
}

.lm-adminbar__in {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1220px;
  padding: 11px 24px;
}

.lm-adminbar__brand {
  align-items: baseline;
  display: flex;
  gap: 10px;
  text-decoration: none;
}

.lm-adminbar__word {
  color: var(--ad-ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.lm-adminbar__tagword {
  border-left: 1px solid var(--ad-line);
  color: var(--ad-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  padding-left: 10px;
  text-transform: uppercase;
}

.lm-adminbar__logout {
  margin: 0;
}

.lm-adminnav {
  border-top: 1px solid var(--ad-line-soft);
}

.lm-adminnav__in {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin: 0 auto;
  max-width: 1220px;
  padding: 0 16px;
}

.lm-adminnav__tab {
  border-bottom: 2px solid transparent;
  color: var(--ad-ink-2);
  font-size: 13.5px;
  font-weight: 600;
  padding: 11px 13px;
  text-decoration: none;
  white-space: nowrap;
}

.lm-adminnav__tab:hover {
  background: var(--ad-surface-2);
  color: var(--ad-ink);
}

.lm-adminnav__tab.is-active {
  border-bottom-color: var(--ad-primary);
  color: var(--ad-ink);
}

/* --- Shell + Kopf --- */
.lm-admin .lm-admin__shell {
  margin: 0 auto;
  max-width: 1220px;
  padding: 0 24px;
}

.lm-admin__head {
  margin: 22px 0 16px;
}

.lm-admin__head h1 {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

/* --- Karten --- */
.lm-admin .lm-admin__card {
  background: var(--ad-surface);
  border: 1px solid var(--ad-line-strong);
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(20, 25, 35, 0.04);
  margin-bottom: 16px;
  padding: 20px 22px;
}

.lm-admin .lm-admin__card--muted {
  background: var(--ad-surface-2);
  box-shadow: none;
}

.lm-admin .lm-admin__card h2 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 4px;
}

.lm-admin .lm-admin__card-head {
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}

.lm-admin .lm-admin__card-head p {
  color: var(--ad-muted);
  font-size: 13px;
  max-width: 46ch;
}

.lm-admin .lm-eyebrow {
  color: var(--ad-muted);
  font-family: var(--ad-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 0 0 6px;
}

/* --- Buttons: primaer rot, stark = dunkel/schwarz, sekundaer = grau --- */
.lm-admin .lm-btn {
  background: var(--ad-dark);
  border: 1px solid var(--ad-dark);
  border-radius: 6px;
  color: #fff;
  font-family: var(--ad-sans);
  font-size: 13px;
  font-weight: 600;
  gap: 7px;
  letter-spacing: 0;
  padding: 10px 16px;
  text-transform: none;
}

.lm-admin .lm-btn:hover {
  background: #11151c;
  border-color: #11151c;
  color: #fff;
}

.lm-admin .lm-btn--amber {
  background: var(--ad-primary);
  border-color: var(--ad-primary);
}

.lm-admin .lm-btn--amber:hover {
  background: var(--ad-primary-deep);
  border-color: var(--ad-primary-deep);
}

.lm-admin .lm-btn--ghost {
  background: var(--ad-surface);
  border-color: var(--ad-line);
  color: var(--ad-ink-2);
}

.lm-admin .lm-btn--ghost:hover {
  background: var(--ad-surface-2);
  border-color: #c3c8d0;
  color: var(--ad-ink);
}

.lm-admin .lm-btn--sm {
  font-size: 12px;
  padding: 7px 12px;
}

/* --- Formulare, Felder --- */
.lm-admin .lm-form {
  gap: 14px;
  max-width: 560px;
}

.lm-admin .lm-form__row {
  gap: 14px;
}

.lm-admin .lm-field {
  gap: 5px;
}

.lm-admin .lm-field label {
  color: var(--ad-ink);
  font-family: var(--ad-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.lm-admin .lm-field input,
.lm-admin .lm-field textarea,
.lm-admin .lm-field select {
  background: var(--ad-surface);
  border: 2px solid var(--ad-line-strong);
  border-radius: 6px;
  color: var(--ad-ink);
  font-family: var(--ad-sans);
  font-size: 14px;
  padding: 11px 12px;
}

.lm-admin .lm-field input::placeholder,
.lm-admin .lm-field textarea::placeholder {
  color: #626b78;
  opacity: 1;
}

.lm-admin .lm-field input:focus,
.lm-admin .lm-field textarea:focus,
.lm-admin .lm-field select:focus {
  border-color: var(--ad-primary);
  box-shadow: 0 0 0 3px var(--ad-focus);
  outline: 0;
}

.lm-admin .lm-field textarea {
  min-height: 84px;
}

.lm-admin .lm-field__optional {
  color: var(--ad-ink-2);
  font-size: inherit;
  font-weight: 500;
}

/* --- Mittagsmenue: klar getrennte, kontrastreiche Eingabebloecke --- */
.lm-admin .lm-admin__menu-block {
  background: var(--ad-surface-2);
  border: 2px solid var(--ad-line);
  border-radius: 8px;
  margin-top: 18px;
  padding: 18px;
}

.lm-admin .lm-admin__menu-block-head {
  margin-bottom: 16px;
}

.lm-admin .lm-admin__menu-block-head h3 {
  color: var(--ad-ink);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
}

.lm-admin .lm-admin__menu-fields {
  display: grid;
  gap: 14px;
}

.lm-admin .lm-admin__menu-title-input {
  font-weight: 700;
}

.lm-admin .lm-admin__menu-description {
  line-height: 1.5;
  min-height: 76px;
}

/* Checkboxen/Radios: normale Groesse (nicht vom width:100% der Textfelder
   erfasst). Boolean-Felder tragen .lm-field--check und zeigen Kaestchen + Text
   als ruhige, linksbuendige Zeile â€” deterministisch, ohne :has(). */
.lm-admin .lm-field input[type="checkbox"],
.lm-admin .lm-field input[type="radio"] {
  accent-color: var(--ad-primary);
  flex: 0 0 auto;
  height: 16px;
  margin: 0;
  padding: 0;
  width: 16px;
}

.lm-admin .lm-field--check label {
  align-items: center;
  color: var(--ad-ink);
  display: flex;
  font-size: 14px;
  font-weight: 500;
  gap: 9px;
  justify-content: flex-start;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
}

.lm-admin .lm-admin__actions {
  gap: 8px;
  margin-top: 16px;
}

/* --- Alerts, Toolbar --- */
.lm-admin .lm-alert {
  border-radius: 8px;
  font-size: 13.5px;
  margin-bottom: 14px;
  padding: 12px 14px;
}

.lm-admin .lm-alert--success {
  background: #e9f4ec;
  border: 1px solid #bfe0c7;
  color: #256b36;
}

.lm-admin .lm-alert--error {
  background: #fdecec;
  border: 1px solid #f3c2c2;
  color: #a51f1f;
}

.lm-admin .lm-admin__toolbar {
  background: transparent;
  border: 0;
  gap: 8px;
  justify-content: flex-start;
  margin-bottom: 14px;
  padding: 0;
}

/* --- Betriebsmodus-Hinweis (serioes, ruhig, nicht alarmistisch) --- */
.lm-note {
  border: 1px solid var(--ad-line);
  border-left: 3px solid #b0b6c0;
  border-radius: 8px;
  color: var(--ad-ink-2);
  font-size: 13px;
  margin: 0 0 14px;
  padding: 11px 14px;
}

.lm-note--warn {
  background: #fbf6ea;
  border-color: #ecdcb4;
  border-left-color: #c99a2e;
  color: #6f5518;
}


/* === Admin - Responsive (Adminbar/Nav) === */
@media (max-width: 640px) {
  .lm-adminbar__in {
    padding: 10px 16px;
  }

  .lm-adminnav__in {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .lm-adminnav__tab {
    flex: 0 0 auto;
  }

  .lm-admin .lm-admin__shell {
    padding: 0 16px;
  }

  .lm-admin .lm-admin__card {
    padding: 18px 16px;
  }

  .lm-admin .lm-admin__menu-block {
    padding: 14px;
  }

  .lm-admin .lm-admin__menu-block-head {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .lm-admin .lm-admin__price {
    max-width: none;
  }
}
