/* ==========================================================================
   Mongolischer Grill Lotus, Altenkirchen — Stylesheet
   Gestaltung angelehnt an die gedruckte Speisekarte: tiefes Schwarzblau,
   kräftiges Rot, weiß konturierte Überschriften.
   ========================================================================== */

:root {
  /* Farben */
  --ink:        #0c0f16;   /* Grundton der Karte */
  --ink-2:      #11151f;   /* etwas heller, für abgesetzte Bereiche */
  --ink-3:      #070911;   /* Footer / dunkelste Fläche */
  --red:        #e2231a;   /* Signalrot der Karte */
  --red-dark:   #b8160f;
  --red-light:  #ff3b30;
  --paper:      #ffffff;
  --text:       #f2f0ec;
  --muted:      #a8adb8;
  --muted-red:  #ffd9d6;
  --line:       rgba(255, 255, 255, .12);
  --line-2:     rgba(255, 255, 255, .06);

  /* Typografie */
  --font-display: "Archivo Black", "Arial Black", "Helvetica Neue", sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Maße */
  --container: 1180px;
  --radius:    10px;
  --radius-lg: 16px;
  --header-h:  78px;

  --shadow: 0 18px 44px rgba(0, 0, 0, .5);
  --ease:   cubic-bezier(.2, .7, .3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; margin: 0 0 .5em; }
p { margin: 0 0 1.05em; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--red); color: #fff; padding: .75rem 1.25rem;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--red-light); outline-offset: 3px; border-radius: 3px; }

/* ---------- Rot mit weißer Kontur (wie auf der Karte) ---------- */
.outline {
  color: var(--red);
  -webkit-text-stroke: 2px #fff;
  paint-order: stroke fill;
  letter-spacing: .01em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: baseline; justify-content: center; gap: .55rem;
  padding: .8rem 1.6rem;
  border: 2px solid transparent; border-radius: 999px;
  font-size: .92rem; font-weight: 700; letter-spacing: .01em;
  text-align: center; cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease),
              border-color .2s var(--ease), color .2s var(--ease);
}
.btn span { font-weight: 500; opacity: .75; font-size: .8em; text-transform: uppercase; letter-spacing: .12em; }
.btn--red    { background: var(--red); color: #fff; border-color: var(--red); }
.btn--red:hover    { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); }
.btn--black  { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--black:hover  { background: #000; border-color: #000; transform: translateY(-2px); }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn--lg     { padding: .95rem 1.9rem; font-size: 1rem; }
.btn--block  { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h); display: flex; align-items: center;
  border-bottom: 3px solid transparent;
  transition: background .3s var(--ease), height .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-stuck {
  height: 66px;
  background: rgba(12, 15, 22, .94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--red);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: flex; flex-direction: column; line-height: 1; }
.brand__kicker {
  font-size: .6rem; font-weight: 700; letter-spacing: .26em;
  text-transform: uppercase; color: var(--paper);
}
.brand__name {
  font-family: var(--font-display); font-size: 1.9rem; line-height: 1;
  margin-top: .12em; -webkit-text-stroke-width: 1.5px;
}

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.nav__list a {
  position: relative; font-size: .9rem; font-weight: 500; color: var(--muted);
  transition: color .2s var(--ease);
}
.nav__list a::after {
  content: ""; position: absolute; left: 0; bottom: -7px; height: 3px; width: 0;
  background: var(--red); transition: width .25s var(--ease);
}
.nav__list a:hover, .nav__list a.is-active { color: #fff; }
.nav__list a:hover::after, .nav__list a.is-active::after { width: 100%; }
.nav__cta { padding: .55rem 1.15rem; font-size: .85rem; white-space: nowrap; }

.nav-toggle {
  display: none; width: 46px; height: 46px; padding: 11px;
  background: none; border: 2px solid var(--line); border-radius: 8px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: #fff; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: calc(var(--header-h) + 3.5rem) 0 4.5rem; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 60% at 80% 12%, rgba(226, 35, 26, .30), transparent 60%),
    radial-gradient(60% 50% at 8% 90%, rgba(226, 35, 26, .14), transparent 65%),
    linear-gradient(180deg, #0d1119 0%, #0a0d14 60%, var(--ink) 100%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: repeating-linear-gradient(
    115deg, transparent 0 26px, rgba(255,255,255,.022) 26px 27px);
}
.hero__inner { position: relative; max-width: 800px; }

.hero__kicker {
  font-family: var(--font-display); font-size: clamp(.85rem, 2vw, 1.25rem);
  letter-spacing: .22em; text-transform: uppercase; color: #fff; margin: 0 0 .1em;
}
.hero__logo {
  font-size: clamp(4.5rem, 15vw, 10rem); line-height: .95; margin: 0 0 .25em;
  -webkit-text-stroke-width: 4px;
}
.hero__tagline {
  font-weight: 700; font-size: clamp(.95rem, 1.9vw, 1.15rem);
  color: #fff; margin-bottom: 1rem;
}
.hero__lead { color: var(--muted); max-width: 56ch; font-size: 1.02rem; }

.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

.hero__facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px;
  list-style: none; margin: 3rem 0 0; padding: 0;
  background: var(--line); border: 1px solid var(--line);
}
.hero__facts li { display: flex; flex-direction: column; gap: .2rem; padding: 1.1rem 1.25rem; background: rgba(12,15,22,.72); }
.hero__facts strong { font-family: var(--font-display); font-size: 1.15rem; color: var(--red-light); }
.hero__facts span { font-size: .87rem; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--dark { background: var(--ink-3); }
.section--red  { background: var(--red); color: #fff; }
.section--red .section__sub { color: var(--muted-red); }

.section__head { max-width: 720px; margin-bottom: 2.75rem; }
.section__title { font-size: clamp(1.8rem, 4.4vw, 3.1rem); text-transform: uppercase; }
.section__title--onred { color: #fff; -webkit-text-stroke: 0; }
.section__sub { color: var(--muted); margin: 0; }

.grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }
.grid--split { grid-template-columns: 1fr 1fr; align-items: start; }

/* ---------- Buffet ---------- */
.buffet { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.buffet__card {
  display: flex; flex-direction: column;
  padding: 1.75rem; border: 2px solid var(--line); border-radius: var(--radius-lg);
  background: var(--ink-2);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.buffet__card:hover { border-color: var(--red); transform: translateY(-4px); }
.buffet__card--hero { grid-row: span 1; border-color: var(--red); background: linear-gradient(180deg, rgba(226,35,26,.16), var(--ink-2) 55%); }
.buffet__label {
  font-family: var(--font-display); font-size: 1.05rem; text-transform: uppercase;
  letter-spacing: .04em; margin: 0 0 .4rem; color: #fff;
}
.buffet__label span { color: var(--red-light); }
.buffet__price {
  font-family: var(--font-display); font-size: 2.6rem; color: var(--red-light);
  margin: 0 0 1rem; line-height: 1;
}
.buffet__times { list-style: none; margin: auto 0 0; padding: 1rem 0 0; border-top: 1px solid var(--line); display: grid; gap: .6rem; }
.buffet__times li { font-size: .92rem; color: var(--muted); }
.buffet__times strong { display: block; color: #fff; font-weight: 600; }

/* Feiertagsregel: gilt für alle Buffet-Varianten */
.buffet__holiday {
  margin: 1rem 0 0; padding-top: .8rem; border-top: 1px dashed var(--line);
  font-size: .85rem; font-weight: 600; color: var(--red-light);
}
.buffet__note {
  margin: 1.5rem 0 0; padding: 1rem 1.25rem;
  border-left: 4px solid var(--red); background: var(--ink-2);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .92rem; color: var(--muted);
}
.buffet__note strong { color: #fff; font-weight: 700; }

/* ---------- Speisekarte ---------- */
.menu__search { position: relative; max-width: 460px; margin-bottom: 1.5rem; }
.menu__search input {
  width: 100%; padding: .85rem 2.6rem .85rem 1.1rem;
  background: var(--ink-2); border: 2px solid var(--line); border-radius: 999px;
  font-size: .95rem;
}
.menu__search input::placeholder { color: #6f7684; }
.menu__search input:focus { border-color: var(--red); outline: none; }
.menu__search-clear {
  position: absolute; right: .5rem; top: 50%; translate: 0 -50%;
  width: 32px; height: 32px; border: 0; border-radius: 50%;
  background: var(--line); color: #fff; font-size: 1.2rem; line-height: 1; cursor: pointer;
}
.menu__results { margin: -.75rem 0 1.25rem; font-size: .88rem; color: var(--muted); min-height: 1.2em; }

.menu__tabs {
  display: flex; gap: .5rem; margin-bottom: 2rem;
  overflow-x: auto; padding-bottom: .6rem;
  scrollbar-width: thin; scrollbar-color: var(--line) transparent;
  /* Andeutung, dass rechts noch mehr Kategorien folgen */
  mask-image: linear-gradient(90deg, #000 calc(100% - 48px), transparent);
  -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 48px), transparent);
}
.menu__tabs[hidden] { display: none; }
.menu__tabs::-webkit-scrollbar { height: 4px; }
.menu__tabs::-webkit-scrollbar-track { background: transparent; }
.menu__tabs::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.menu__tab {
  flex: none; padding: .55rem 1.15rem; cursor: pointer; white-space: nowrap;
  background: var(--ink-2); border: 2px solid var(--line); border-radius: 999px;
  color: var(--muted); font-size: .88rem; font-weight: 600;
  transition: all .2s var(--ease);
}
.menu__tab:hover { color: #fff; border-color: rgba(255,255,255,.3); }
.menu__tab.is-active { background: var(--red); border-color: var(--red); color: #fff; }

.menu__panel[hidden] { display: none; }
.menu__cat {
  font-size: 1.35rem; text-transform: uppercase; color: var(--red-light);
  margin: 2.5rem 0 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--line);
}
.menu__cat:first-child { margin-top: 0; }
.menu__cat small {
  display: inline-block; margin-left: .6rem;
  font-family: var(--font-body); font-size: .72rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}

/* Gerichte */
.dishes { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.dishes--two { grid-template-columns: repeat(2, 1fr); column-gap: 2.5rem; }
.dish {
  display: grid; grid-template-columns: 3.4rem 1fr auto; align-items: baseline; gap: .6rem;
  padding: .8rem 0; border-bottom: 1px solid var(--line-2);
}
.dish__no {
  font-family: var(--font-display); font-size: .82rem; color: var(--red-light);
  letter-spacing: .02em;
}
.dish__name { font-weight: 500; }
.dish__name em { font-style: normal; color: var(--muted); font-size: .9em; }
.dish__name strong { font-weight: 700; }
.dish__price {
  font-family: var(--font-display); font-size: .98rem; color: #fff;
  white-space: nowrap; font-variant-numeric: tabular-nums;
}
.dish--star .dish__name { color: #fff; }
.dish--star .dish__price { color: var(--red-light); }
.dish[hidden] { display: none; }

.section--red .dish { border-bottom-color: rgba(255,255,255,.2); }
.section--red .dish__no { color: #fff; opacity: .8; }
.section--red .dish__name em { color: var(--muted-red); }
.section--red .dish__price { color: #fff; }
.section--red .dish--star .dish__price,
.section--red .dish--star .dish__name { color: #fff; }

.legend {
  margin-top: 2.5rem; padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--red); background: var(--ink-2); border-radius: 0 var(--radius) var(--radius) 0;
}
.legend p { margin: 0; font-size: .87rem; color: var(--muted); }
.legend p + p { margin-top: .6rem; }
.legend strong { color: #fff; font-weight: 600; }

/* ---------- Lieferservice ---------- */
.delivery { display: grid; grid-template-columns: 1.25fr .75fr; gap: 2.5rem; align-items: start; }
.delivery__zones { display: grid; gap: 1px; background: rgba(255,255,255,.35); border: 1px solid rgba(255,255,255,.35); }
.zone {
  display: grid; grid-template-columns: 1fr auto; gap: .2rem 1rem;
  padding: 1.1rem 1.3rem; background: var(--red);
}
.zone__area { font-weight: 700; font-size: 1.02rem; }
.zone__fee  { font-family: var(--font-display); font-size: 1.45rem; grid-row: span 2; align-self: center; }
.zone__note { font-size: .85rem; color: var(--muted-red); }

.delivery__cta { display: grid; gap: .75rem; }
.delivery__hint { margin: .25rem 0 0; font-size: .85rem; color: var(--muted-red); text-align: center; }

/* ---------- Formular ---------- */
.form {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--ink-2); border: 2px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; }
.field { display: block; margin-bottom: 1rem; }
.field > span {
  display: block; margin-bottom: .35rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.field input, .field select, .field textarea {
  width: 100%; padding: .78rem 1rem;
  background: rgba(0, 0, 0, .35); border: 2px solid var(--line); border-radius: 8px;
  font-size: .95rem;
  transition: border-color .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #6f7684; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); outline: none; }
.field textarea { resize: vertical; }
.field input.is-invalid, .field select.is-invalid { border-color: var(--red-light); }
.form__hint { margin: 1rem 0 0; font-size: .78rem; color: var(--muted); }
.form__status { margin: .7rem 0 0; font-size: .9rem; min-height: 1.2em; font-weight: 600; }
.form__status.is-error { color: var(--red-light); }
.form__status.is-ok { color: #5ddb8b; }

/* ---------- Kontakt ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.contact-card {
  padding: 1.05rem 1.25rem; border-radius: var(--radius);
  background: var(--ink-2); border: 2px solid var(--line);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.contact-card:hover { border-color: var(--red); transform: translateY(-3px); }
.contact-card__label {
  display: block; font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .2rem;
}
.contact-card__value { font-family: var(--font-display); font-size: 1.08rem; color: #fff; }

.info h3 { font-size: 1.2rem; text-transform: uppercase; color: var(--red-light); margin: 2rem 0 .6rem; }
.info h3:first-child { margin-top: 0; }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { padding: .65rem 0; border-bottom: 1px solid var(--line-2); text-align: left; font-weight: 400; }
.hours th { color: var(--muted); font-size: .92rem; }
.hours td { text-align: right; font-variant-numeric: tabular-nums; }
.hours__closed { color: var(--red-light); font-weight: 600; }
.hours__closed small { color: var(--muted); font-weight: 400; }

.map {
  min-height: 380px; display: grid; place-content: center; gap: 1.25rem; justify-items: center;
  border: 2px dashed var(--line); border-radius: var(--radius-lg);
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(255,255,255,.025) 14px 15px),
    var(--ink-2);
  text-align: center; padding: 2rem;
}
.map__label { margin: 0; font-family: var(--font-display); font-size: 1.05rem; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-3); border-top: 3px solid var(--red); padding-top: 3rem; }
.site-footer__inner { display: flex; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; padding-bottom: 2.25rem; }
.site-footer__brand { display: flex; flex-direction: column; }
.site-footer__brand .brand__name { font-size: 2.2rem; -webkit-text-stroke-width: 2px; }
.site-footer__brand p { margin: 1rem 0 0; color: var(--muted); font-size: .9rem; }
.site-footer__nav { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: flex-start; }
.site-footer__nav a { color: var(--muted); font-size: .9rem; transition: color .2s var(--ease); }
.site-footer__nav a:hover { color: var(--red-light); }
.site-footer__bottom { border-top: 1px solid var(--line-2); padding: 1.2rem 0; }
.site-footer__bottom p { margin: 0; font-size: .8rem; color: var(--muted); }

/* ---------- Nach oben ---------- */
.to-top {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  background: var(--red); border: 0; color: #fff; font-size: 1.1rem;
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }

/* ---------- Scroll-Animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .buffet { grid-template-columns: 1fr 1fr; }
  .buffet__card--hero { grid-column: span 2; }
  .delivery { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .grid--split { grid-template-columns: 1fr; }
  .dishes--two { grid-template-columns: 1fr; }
  .map { min-height: 260px; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(86vw, 350px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 2rem;
    padding: 2rem; background: rgba(7, 9, 17, .98);
    backdrop-filter: blur(16px); border-left: 3px solid var(--red);
    transform: translateX(100%); transition: transform .35s var(--ease);
  }
  .nav.is-open { transform: none; }
  .nav__list { flex-direction: column; gap: 1.3rem; }
  .nav__list a { font-family: var(--font-display); font-size: 1.25rem; color: #fff; text-transform: uppercase; }
  .nav__cta { width: 100%; }
  body.nav-open { overflow: hidden; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 2.5rem); }
  .hero__logo { -webkit-text-stroke-width: 3px; }
  .hero__actions .btn { width: 100%; }
  .buffet { grid-template-columns: 1fr; }
  .buffet__card--hero { grid-column: span 1; }
  .dish { grid-template-columns: 2.4rem 1fr auto; gap: .5rem; }
  .dish__no { font-size: .75rem; }
  .dish__price { font-size: .92rem; }
  .outline { -webkit-text-stroke-width: 1.5px; }
  .site-footer__inner { flex-direction: column; }
}

/* ---------- Reduzierte Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Druck ---------- */
@media print {
  .site-header, .nav, .to-top, .hero, .form, .menu__search, .menu__tabs, .map { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .section, .section--red, .section--dark { background: #fff !important; color: #000 !important; padding: 1rem 0; }
  .outline, .section__title, .menu__cat, .dish__no, .dish__price { color: #000 !important; -webkit-text-stroke: 0 !important; }
  .menu__panel[hidden] { display: block !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- Rechtstexte (Impressum / Datenschutz) ---------- */
.legal { padding: calc(var(--header-h) + 3.5rem) 0 4.5rem; max-width: 760px; }
.legal h1 { font-size: clamp(2rem, 5vw, 2.8rem); text-transform: uppercase; margin-bottom: 2rem; }
.legal h2 { font-size: 1.25rem; text-transform: uppercase; margin: 2.25rem 0 .7rem; color: var(--red-light); }
.legal p, .legal li { color: var(--muted); }
.legal a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.legal ul { padding-left: 1.2rem; }
.legal .todo {
  padding: 1rem 1.2rem; margin-bottom: 2.5rem;
  border-left: 4px solid var(--red); background: var(--ink-2); border-radius: 0 var(--radius) var(--radius) 0;
}
.legal .todo p { margin: 0; color: var(--text); font-size: .9rem; }
