@charset "utf-8";
/* Federal Café — Designwelt „Servicio continuo · Las Formas"
   Farben und Formen stammen aus der gedruckten Karte des Hauses. */

/* ---------------------------------------------------------------- Fonts */
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit-var.woff2") format("woff2-variations");
  font-weight: 300 800;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/onest-var.woff2") format("woff2-variations");
  font-weight: 300 700;
  font-display: swap;
  font-style: normal;
}

/* --------------------------------------------------------------- Tokens */
:root {
  --paper: #fffdf9;
  --paper-2: #f7f2e9;
  --ink: #1a1a1a;
  --ink-2: #4a4744;
  --ink-3: #6f6a64;

  --ochre: #ce871e;
  --ochre-ink: #8a5a0e;
  --ochre-soft: #f6d59d;
  --forest: #47704c;
  --forest-deep: #34553a;
  --sage: #788d8b;
  --sage-ink: #4c605e;
  --teal: #115a63;

  --line: rgba(26, 26, 26, 0.13);
  --line-2: rgba(26, 26, 26, 0.07);

  --pixeluno: #6d3fd4;

  --f-display: "Outfit", "Trebuchet MS", system-ui, sans-serif;
  --f-body: "Onest", system-ui, -apple-system, "Segoe UI", sans-serif;

  --shell: 1240px;
  --gut: clamp(20px, 5vw, 56px);
  --sec: clamp(68px, 9vw, 136px);
  --r: 3px;

  --strip-h: 34px;
  --head-h: 68px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (max-width: 640px) {
  :root { --strip-h: 46px; --head-h: 60px; }
}

/* ---------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--strip-h) + var(--head-h) + 16px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
hr { border: 0; border-top: 1px solid var(--line); margin: 0; }

::selection { background: var(--ochre-soft); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
  border-radius: 2px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0;
}

.skip {
  position: fixed; left: 12px; top: calc(var(--strip-h) + 8px); z-index: 200;
  background: var(--forest); color: var(--paper);
  padding: 10px 16px; border-radius: var(--r);
  transform: translateY(calc(-100% - var(--strip-h) - 20px));
  transition: transform 0.18s var(--ease);
  font-family: var(--f-display); font-weight: 600; text-decoration: none;
}
.skip:focus { transform: translateY(0); }

/* --------------------------------------------------------------- Layout */
.shell {
  width: min(100% - var(--gut) * 2, var(--shell));
  margin-inline: auto;
}
.shell--wide { width: min(100% - var(--gut) * 2, 1480px); }
.sec { padding-block: var(--sec); }
.sec--tight { padding-block: clamp(48px, 6vw, 88px); }

/* Abschnittskopf: Nummer steht NEBEN der Ueberschrift, nie darueber. */
.head {
  display: grid;
  gap: clamp(16px, 2.4vw, 30px);
  grid-template-columns: 1fr;
  align-items: end;
  margin-bottom: clamp(30px, 4vw, 56px);
}
.head__main { max-width: 46ch; }
.head h2 { font-size: clamp(1.85rem, 3.5vw, 3.05rem); }
.head__lead {
  margin-top: 14px; color: var(--ink-2); font-size: 1.075rem; max-width: 52ch;
}
.head__aside {
  font-family: var(--f-display); font-weight: 600; font-size: 0.7rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage-ink);
  padding-bottom: 0.45em;
}
@media (min-width: 860px) {
  .head { grid-template-columns: 1fr auto; }
  .head__aside { text-align: right; white-space: nowrap; }
}

/* --------------------------------------------------- PixelUno-Streifen */
.pxu {
  position: fixed; inset: 0 0 auto 0; z-index: 120;
  min-height: var(--strip-h);
  background: var(--pixeluno); color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 6px 16px;
  font-family: var(--f-display);
  font-size: 0.735rem; font-weight: 500; letter-spacing: 0.015em;
  line-height: 1.3;
}

/* --------------------------------------------------------------- Header */
.head-bar {
  position: fixed; inset: var(--strip-h) 0 auto 0; z-index: 110;
  height: var(--head-h);
  display: flex; align-items: center;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.head-bar[data-scrolled="1"] {
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--paper) 96%, transparent);
}
.head-bar__in {
  width: min(100% - var(--gut) * 2, 1480px);
  margin-inline: auto;
  display: flex; align-items: center; gap: clamp(14px, 3vw, 40px);
}
.brand { display: flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.brand svg { width: clamp(96px, 11vw, 132px); height: auto; color: var(--ink); }
.brand:hover svg { color: var(--forest); }

.nav { display: none; margin-left: auto; align-items: center; gap: clamp(16px, 2vw, 30px); }
@media (min-width: 1000px) { .nav { display: flex; } }
.nav a {
  font-family: var(--f-display); font-weight: 600; font-size: 0.905rem;
  text-decoration: none; letter-spacing: -0.005em;
  padding: 6px 0; position: relative; color: var(--ink);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--ochre); transform: scaleX(0); transform-origin: left;
  transition: transform 0.24s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--ochre-ink); }

.head-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
@media (min-width: 1000px) { .head-actions { margin-left: 0; } }

.langs { position: relative; }
.langs__btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 12px; cursor: pointer;
  font-family: var(--f-display); font-weight: 600; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.07em;
}
.langs__btn:hover { border-color: var(--forest); color: var(--forest); }
.langs__list {
  position: absolute; right: 0; top: calc(100% + 8px); min-width: 148px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); padding: 6px; z-index: 10;
  box-shadow: 0 14px 34px -18px rgba(26, 26, 26, 0.4);
}
.langs__list[hidden] { display: none; }
.langs__list a {
  display: block; padding: 8px 12px; text-decoration: none; border-radius: 2px;
  font-family: var(--f-display); font-weight: 500; font-size: 0.9rem;
}
.langs__list a:hover { background: var(--paper-2); }
.langs__list a[aria-current="true"] { color: var(--ochre-ink); font-weight: 700; }

.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 0 9px;
  background: none; border: 1px solid var(--line); border-radius: 999px; cursor: pointer;
}
@media (min-width: 1000px) { .burger { display: none; } }
.burger span { display: block; height: 1.5px; background: var(--ink); transition: transform 0.24s var(--ease), opacity 0.18s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobilmenue: NIE <details>, sonst verschwindet die Desktop-Navigation */
.drawer {
  position: fixed; inset: calc(var(--strip-h) + var(--head-h)) 0 0 0; z-index: 105;
  background: var(--paper); padding: clamp(24px, 6vw, 44px) var(--gut) 40px;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 6px;
}
.drawer[hidden] { display: none; }
@media (min-width: 1000px) { .drawer { display: none !important; } }
.drawer a {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(1.65rem, 7vw, 2.3rem); letter-spacing: -0.03em;
  text-decoration: none; padding: 11px 0; border-bottom: 1px solid var(--line-2);
}
.drawer a[aria-current="page"] { color: var(--ochre-ink); }
.drawer__foot { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; }

/* --------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 50px; padding: 0 26px;
  font-family: var(--f-display); font-weight: 600; font-size: 0.97rem;
  letter-spacing: -0.005em; text-decoration: none; cursor: pointer;
  border: 1.5px solid transparent; border-radius: 999px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
              border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--fill { background: var(--forest); color: var(--paper); border-color: var(--forest); }
.btn--fill:hover { background: var(--forest-deep); border-color: var(--forest-deep); }
.btn--line { border-color: var(--ink); color: var(--ink); }
.btn--line:hover { background: var(--ink); color: var(--paper); }
.btn--ochre { background: var(--ochre); color: #241505; border-color: var(--ochre); }
.btn--ochre:hover { background: #b8760f; border-color: #b8760f; }
.btn--ghost { border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--forest); color: var(--forest); }
.btn--sm { min-height: 40px; padding: 0 18px; font-size: 0.875rem; }
.btn--wait {
  border-style: dashed; border-color: var(--sage);
  background: color-mix(in srgb, var(--ochre-soft) 34%, var(--paper));
  color: var(--ink-2); cursor: not-allowed;
  flex-direction: column; gap: 1px; padding-block: 7px; line-height: 1.2;
}
.btn--wait small { font-weight: 400; font-size: 0.72rem; color: var(--ink-3); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-display); font-weight: 600; text-decoration: none;
  color: var(--forest); border-bottom: 1.5px solid currentColor; padding-bottom: 2px;
}
.link-arrow svg { transition: transform 0.22s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------- Das Tagesband */
.band { --b-from: 8; --b-to: 23; }
.band__track {
  position: relative; height: 12px; border-radius: 999px;
  background: var(--line-2); overflow: visible;
}
.band__seg {
  position: absolute; top: 0; bottom: 0; border-radius: 999px;
}
.band__seg--coffee { background: var(--sage); }
.band__seg--kitchen { background: var(--ochre); }
.band__seg--sunset { background: var(--teal); }
.band__ticks {
  display: flex; justify-content: space-between; margin-top: 9px;
  font-family: var(--f-display); font-size: 0.7rem; font-weight: 500;
  color: var(--ink-3); letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.band__now {
  position: absolute; top: -7px; bottom: -7px; width: 2px;
  background: var(--ink); border-radius: 2px;
  transition: left 0.6s var(--ease);
}
.band__now::after {
  content: ""; position: absolute; left: 50%; top: -4px;
  width: 8px; height: 8px; margin-left: -4px; border-radius: 999px;
  background: var(--ink);
}
.band__now[hidden] { display: none; }
.band__legend {
  display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 14px;
  font-size: 0.83rem; color: var(--ink-2);
}
.band__legend span { display: inline-flex; align-items: center; gap: 7px; }
.band__legend i {
  width: 12px; height: 12px; border-radius: 999px; flex: 0 0 auto;
}
.band__caption { margin-top: 12px; font-size: 0.86rem; color: var(--ink-3); }

/* Live-Zustandspille */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 11px; border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--f-display); font-weight: 600; font-size: 0.82rem;
  background: var(--paper);
}
.pill i {
  width: 8px; height: 8px; border-radius: 999px; background: var(--sage);
  flex: 0 0 auto;
}
.pill[data-state="open"] { border-color: color-mix(in srgb, var(--forest) 45%, transparent); color: var(--forest); }
.pill[data-state="open"] i { background: var(--forest); }
.pill[data-state="soon"] { border-color: color-mix(in srgb, var(--ochre) 60%, transparent); color: var(--ochre-ink); }
.pill[data-state="soon"] i { background: var(--ochre); }
.pill[data-state="closed"] { color: var(--ink-3); }
.pill[data-state="closed"] i { background: var(--ink-3); }
.pill__sub { font-weight: 400; color: var(--ink-3); }

/* ----------------------------------------------------------------- Hero */
.hero {
  padding-top: calc(var(--strip-h) + var(--head-h) + clamp(28px, 5vw, 68px));
  padding-bottom: clamp(40px, 6vw, 84px);
  position: relative; overflow: hidden;
}
.hero__grid {
  display: grid; gap: clamp(30px, 5vw, 64px);
  grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 940px) {
  .hero__grid { grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr); }
}
.hero h1 {
  font-size: clamp(2.55rem, 6.6vw, 4.85rem);
  line-height: 0.99; letter-spacing: -0.036em;
}
.hero__lead {
  margin-top: clamp(18px, 2.4vw, 26px);
  font-size: clamp(1.06rem, 1.5vw, 1.23rem);
  color: var(--ink-2); max-width: 44ch;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(24px, 3vw, 34px); }
.hero__band { margin-top: clamp(30px, 4vw, 46px); max-width: 520px; }

/* Foto in der Markenform — die FORMA ist Rahmen, nie Tapete */
.forma {
  position: relative; isolation: isolate;
}
.forma__img {
  width: 100%; height: auto; object-fit: cover; display: block;
  background: var(--paper-2);
}
.forma--leaf .forma__img {
  border-radius: 46% 8% 46% 8% / 30% 8% 30% 8%;
}
.forma--disc .forma__img { border-radius: 999px; aspect-ratio: 1; }
.forma--arch .forma__img { border-radius: 50% 50% 6px 6px / 34% 34% 6px 6px; }
.forma--soft .forma__img { border-radius: 10% 34% 10% 34% / 12% 26% 12% 26%; }
/* Objekte mit weissem Grund (die australischen Plaene) sitzen auf einer
   getoenten Flaeche; multiply laesst das Papierweiss darin verschwinden. */
.forma--paper {
  background: var(--paper-2);
  border-radius: 50% 50% 6px 6px / 34% 34% 6px 6px;
  padding: clamp(18px, 3vw, 38px);
}
.forma--paper .forma__img { mix-blend-mode: multiply; border-radius: 0; }
.forma__cap {
  margin-top: 12px; font-size: 0.82rem; color: var(--ink-3);
}

.hero__shape {
  position: relative;
}
@media (max-width: 939px) {
  .hero__shape .forma__img { max-height: 62vh; object-fit: cover; }
}
.hero__shape::before {
  content: ""; position: absolute; z-index: -1;
  width: 62%; aspect-ratio: 1; border-radius: 999px;
  background: var(--ochre-soft);
  right: -6%; top: -9%;
}

/* ------------------------------------------------------------ Momente */
.moments { display: grid; gap: clamp(24px, 3vw, 40px); grid-template-columns: 1fr; }
@media (min-width: 760px) { .moments { grid-template-columns: repeat(3, 1fr); } }
.moment { display: flex; flex-direction: column; gap: 16px; }
.moment__img { aspect-ratio: 4 / 5; }
.moment h3 { font-size: clamp(1.3rem, 2vw, 1.62rem); }
.moment__time {
  display: inline-flex; align-items: baseline; gap: 7px;
  font-family: var(--f-display); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ochre-ink);
}
.moment__row { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.moment p { color: var(--ink-2); font-size: 0.985rem; }

/* --------------------------------------------------------- Standortkarten */
.places { display: grid; gap: clamp(20px, 2.2vw, 30px); grid-template-columns: 1fr; }
@media (min-width: 560px) { .places { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .places { grid-template-columns: repeat(3, 1fr); } }
/* Zehn Haeuser: ab 1300 px fuenf Spalten, damit keine Karte allein steht. */
@media (min-width: 1300px) { .places--all { grid-template-columns: repeat(5, 1fr); } }
.places--all .place h3 { font-size: 1.16rem; }
.places--all .place__body { padding: 15px 16px 18px; gap: 9px; }
@media (min-width: 1300px) {
  .places--all .pill { flex-wrap: wrap; padding: 6px 12px 6px 10px; font-size: 0.78rem; }
  .places--all .pill__sub { flex-basis: 100%; padding-left: 16px; }
}
.place {
  display: flex; flex-direction: column; text-decoration: none;
  border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; background: var(--paper);
  transition: border-color 0.24s var(--ease), transform 0.28s var(--ease),
              box-shadow 0.28s var(--ease);
}
.place:hover {
  border-color: color-mix(in srgb, var(--forest) 40%, transparent);
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -30px rgba(26, 26, 26, 0.45);
}
.place__media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--paper-2); }
.place__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.place:hover .place__media img { transform: scale(1.035); }
.place__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.place__city {
  font-family: var(--f-display); font-size: 0.73rem; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--sage-ink);
}
.place h3 { font-size: 1.32rem; }
.place__row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.place__city--under {
  margin-top: 9px; letter-spacing: 0.12em;
}
.mitem__unit {
  font-family: var(--f-display); font-size: 0.76rem; font-weight: 500;
  color: var(--ink-3); margin-left: 5px; white-space: nowrap;
}
.place__meta { font-size: 0.875rem; color: var(--ink-3); margin-top: auto; }
.place__band { margin-top: 4px; }

/* ------------------------------------------------------------- Flächen */
.slab { background: var(--forest); color: var(--paper); }
.slab h2, .slab h3 { color: var(--paper); }
.slab p { color: color-mix(in srgb, var(--paper) 82%, var(--forest)); }
.slab .head__aside { color: color-mix(in srgb, var(--paper) 66%, var(--forest)); }
.slab .stat span { color: color-mix(in srgb, var(--paper) 78%, var(--forest)); }
.slab .press-note { color: color-mix(in srgb, var(--paper) 62%, var(--forest)); }
.slab .msec__note { color: color-mix(in srgb, var(--paper) 74%, var(--forest)); }
.slab .btn--line { border-color: var(--paper); color: var(--paper); }
.slab .btn--line:hover { background: var(--paper); color: var(--forest); }
.slab a.link-arrow { color: var(--ochre-soft); }
.slab--sand { background: var(--ochre-soft); color: var(--ink); }
.slab--sand h2, .slab--sand h3 { color: var(--ink); }
.slab--sand p { color: #4b3a1c; }
.slab--sand .head__aside { color: #8a6a2c; }
.slab--paper2 { background: var(--paper-2); }

/* -------------------------------------------------------------- Erzählung */
.split { display: grid; gap: clamp(28px, 5vw, 68px); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split--narrow { align-items: start; }
.prose { max-width: 60ch; font-size: 1.06rem; }
.prose p + p { margin-top: 0; }
.prose h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.45rem); margin-top: clamp(28px, 3vw, 40px);
  margin-bottom: 10px;
}
.prose h3:first-child { margin-top: 0; }
.prose--slab p { color: color-mix(in srgb, var(--paper) 84%, var(--forest)); }

/* ------------------------------------------------------------- Vertrauen */
.trust { display: grid; gap: clamp(26px, 3.4vw, 48px); grid-template-columns: 1fr; }
@media (min-width: 880px) { .trust { grid-template-columns: 1.15fr 1fr; } }
.press { display: flex; flex-wrap: wrap; gap: 10px 26px; align-items: baseline; }
.press li {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(1.02rem, 1.7vw, 1.35rem); letter-spacing: 0.02em;
}
.press-note { margin-top: 14px; font-size: 0.83rem; color: var(--ink-3); }
.stat-row { display: flex; flex-wrap: wrap; gap: 26px 44px; }
.stat b {
  display: block; font-family: var(--f-display); font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1; letter-spacing: -0.03em;
}
.stat span { display: block; margin-top: 7px; font-size: 0.88rem; color: var(--ink-2); }

/* ------------------------------------------------------------- Karte/Menu */
.menu-nav {
  position: sticky; top: calc(var(--strip-h) + var(--head-h)); z-index: 60;
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding-block: 11px;
}
.menu-nav__in { display: flex; align-items: center; gap: 10px; overflow-x: auto;
  scrollbar-width: none; scroll-padding-inline: 16px; }
.menu-nav__in::after { content: ""; flex: 0 0 8px; }
.menu-nav__in::-webkit-scrollbar { display: none; }
.menu-nav a {
  flex: 0 0 auto; text-decoration: none; white-space: nowrap;
  font-family: var(--f-display); font-weight: 600; font-size: 0.86rem;
  padding: 8px 15px; border-radius: 999px; border: 1px solid var(--line);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s;
}
.menu-nav a:hover { border-color: var(--forest); color: var(--forest); }
.menu-nav a[aria-current="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.menu-nav__time {
  margin-left: auto; flex: 0 0 auto; font-size: 0.78rem; color: var(--ink-3);
  font-family: var(--f-display); font-weight: 500; padding-left: 12px;
  display: none;
}
@media (min-width: 900px) { .menu-nav__time { display: block; } }

.filters {
  border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(16px, 2.4vw, 24px); margin-bottom: clamp(28px, 4vw, 44px);
  background: var(--paper);
}
.filters legend {
  font-family: var(--f-display); font-weight: 700; font-size: 1.02rem;
  padding: 0 6px 0 0;
}
.filters__grid { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 14px; }
.chk { position: relative; }
.chk input {
  position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer;
}
.chk span {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 15px; border: 1px solid var(--line); border-radius: 999px;
  font-family: var(--f-display); font-weight: 500; font-size: 0.87rem;
  transition: background 0.18s var(--ease), border-color 0.18s var(--ease), color 0.18s;
}
.chk input:hover + span { border-color: var(--forest); }
.chk input:checked + span {
  background: var(--forest); border-color: var(--forest); color: var(--paper);
}
.chk input:focus-visible + span { outline: 2px solid var(--forest); outline-offset: 3px; }
.filters__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  margin-top: 15px; padding-top: 14px; border-top: 1px solid var(--line-2);
  font-size: 0.87rem; color: var(--ink-2); flex-wrap: wrap;
}
.filters__clear {
  background: none; border: 0; padding: 0; cursor: pointer;
  font-family: var(--f-display); font-weight: 600; font-size: 0.87rem;
  color: var(--forest); border-bottom: 1.5px solid currentColor;
}
.filters__clear[hidden] { display: none; }

.part { padding-top: clamp(40px, 5vw, 72px); }
.part__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 18px; flex-wrap: wrap; padding-bottom: 14px; border-bottom: 2px solid var(--ink);
}
.part__head h2 { font-size: clamp(1.8rem, 3.6vw, 2.75rem); }
.part__hours {
  font-family: var(--f-display); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--ochre-ink);
  font-variant-numeric: tabular-nums;
}

.msec { padding-top: clamp(30px, 3.6vw, 48px); }
.msec__head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 6px; }
.msec h3 { font-size: clamp(1.32rem, 2.2vw, 1.75rem); }
.msec__note { font-size: 0.88rem; color: var(--ink-3); }
.mlist { columns: 1; }
@media (min-width: 900px) {
  .mlist--two { columns: 2; column-gap: clamp(36px, 4vw, 64px); }
}
.mitem {
  break-inside: avoid; padding: 15px 0; border-bottom: 1px solid var(--line-2);
}
.mitem[hidden] { display: none; }
.mitem--photo { display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 16px; align-items: start; }
@media (min-width: 620px) { .mitem--photo { grid-template-columns: 96px minmax(0, 1fr); gap: 20px; } }
.mitem__thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }
.mitem__body { min-width: 0; }
.mitem__top { display: flex; align-items: baseline; gap: 10px; }
.mitem__name {
  font-family: var(--f-display); font-weight: 600; font-size: 1.045rem;
  letter-spacing: -0.008em;
}
.mitem__dots {
  flex: 1 1 auto; height: 1px; margin-bottom: 0.28em;
  background-image: radial-gradient(circle, var(--line) 1px, transparent 1px);
  background-size: 5px 1px; background-repeat: repeat-x;
  min-width: 18px;
}
.mitem__price {
  font-family: var(--f-display); font-weight: 700; font-size: 1.01rem;
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.mitem__price small { font-weight: 500; color: var(--ink-3); }
.mitem__ask { font-weight: 500; font-size: 0.87rem; color: var(--ink-3); }
.mitem__desc { margin-top: 5px; font-size: 0.945rem; color: var(--ink-2); max-width: 54ch; }
.mitem__tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; align-items: center; }
.tag {
  font-family: var(--f-display); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 7px; border-radius: 2px; border: 1px solid var(--line);
  color: var(--ink-3);
}
.tag--diet { background: var(--forest); border-color: var(--forest); color: var(--paper); }
.tag--local { background: var(--ochre-soft); border-color: var(--ochre-soft); color: #5c4310; }
.mitem__add {
  margin-top: 9px; font-size: 0.86rem; color: var(--ink-3); line-height: 1.5;
}
.mitem__add b { font-weight: 600; color: var(--ink-2); }
.mitem__addgroup { margin-top: 7px; }
.mitem__addgroup em { font-style: normal; font-weight: 600; color: var(--ink-2); font-size: 0.86rem; }
.mitem--compact { padding: 9px 0; }
.mitem--compact .mitem__desc { margin-top: 3px; font-size: 0.885rem; }

.flatlist { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-top: 10px; font-size: 0.95rem; color: var(--ink-2); }
.flat-price {
  font-family: var(--f-display); font-weight: 700; font-variant-numeric: tabular-nums;
  margin-left: auto; font-size: 1.01rem;
}
.msec__head { justify-content: flex-start; }

.akey { display: flex; flex-wrap: wrap; gap: 7px 18px; margin-top: 16px; font-size: 0.82rem; color: var(--ink-3); }
.akey b { font-family: var(--f-display); font-weight: 700; color: var(--ink-2); }

.note-box {
  border-left: 3px solid var(--ochre); padding: 4px 0 4px 16px;
  font-size: 0.93rem; color: var(--ink-2); max-width: 62ch;
}

/* --------------------------------------------------------- Standortseite */
.place-hero {
  padding-top: calc(var(--strip-h) + var(--head-h) + clamp(24px, 4vw, 52px));
}
.crumb {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  font-family: var(--f-display); font-weight: 600; font-size: 0.83rem;
  color: var(--sage-ink); margin-bottom: 18px;
}
.crumb:hover { color: var(--forest); }
.facts { display: grid; gap: 20px 34px; grid-template-columns: 1fr; margin-top: 26px; }
@media (min-width: 620px) { .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.fact dt {
  font-family: var(--f-display); font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--sage-ink);
  margin-bottom: 5px;
}
.fact dd { margin: 0; font-size: 1.0rem; }
.fact dd a { text-decoration-color: var(--line); text-underline-offset: 3px; }
.fact dd a:hover { color: var(--forest); }

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.94rem; }
.hours-table th, .hours-table td { text-align: left; padding: 8px 0; border-bottom: 1px solid var(--line-2); }
.hours-table th { font-weight: 500; color: var(--ink-2); width: 42%; }
.hours-table td { font-variant-numeric: tabular-nums; }
.hours-table tr[data-today="1"] th, .hours-table tr[data-today="1"] td { font-weight: 700; color: var(--ink); }
.hours-table small { display: block; color: var(--ochre-ink); font-size: 0.82rem; font-weight: 600; }

.gallery { display: grid; gap: clamp(10px, 1.2vw, 16px); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery li { aspect-ratio: 1; overflow: hidden; border-radius: 2px; background: var(--paper-2); }
.gallery picture { display: block; width: 100%; height: 100%; }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 760px) {
  .gallery li:nth-child(1) { grid-column: span 2; grid-row: span 2; }
}

.map-wrap { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--paper-2); }
.map-wrap svg { width: 100%; height: auto; display: block; }

/* ---------------------------------------------------------------- FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 19px 40px 19px 0; position: relative;
  font-family: var(--f-display); font-weight: 600; font-size: 1.06rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 11px; height: 11px;
  margin-top: -6px; border-right: 1.8px solid var(--ink); border-bottom: 1.8px solid var(--ink);
  transform: rotate(45deg); transition: transform 0.25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq__a { padding: 0 0 22px; color: var(--ink-2); max-width: 62ch; }

/* --------------------------------------------------------------- Prozess */
.steps { counter-reset: s; display: grid; gap: clamp(20px, 2.6vw, 32px); grid-template-columns: 1fr; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .steps { grid-template-columns: repeat(5, 1fr); } }
.step { counter-increment: s; padding-top: 16px; border-top: 2px solid var(--ochre); }
.step::before {
  content: counter(s, decimal-leading-zero);
  display: block; font-family: var(--f-display); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.1em; color: var(--ochre-ink); margin-bottom: 10px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 7px; }
.step p { font-size: 0.92rem; color: var(--ink-2); }

/* --------------------------------------------------------------- Formular */
.form { display: grid; gap: 18px; max-width: 640px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-family: var(--f-display); font-weight: 600; font-size: 0.87rem;
}
.field label span { font-weight: 400; color: var(--ink-3); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); padding: 12px 14px; min-height: 48px;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.field textarea { min-height: 148px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--forest);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--forest) 16%, transparent);
}
.field--check { flex-direction: row; align-items: flex-start; gap: 11px; }
.field--check input { min-height: 0; width: 19px; height: 19px; margin-top: 3px; flex: 0 0 auto; }
.field--check label { font-weight: 400; font-size: 0.9rem; font-family: var(--f-body); color: var(--ink-2); }
.field--row { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .field--row { grid-template-columns: 1fr 1fr; } }

/* --------------------------------------------------------------- Kontakt */
.mails { display: grid; gap: 2px; grid-template-columns: 1fr; }
.mail-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 13px 0; border-bottom: 1px solid var(--line-2); text-decoration: none;
}
.mail-row:hover .mail-row__to { color: var(--forest); }
.mail-row__name { font-family: var(--f-display); font-weight: 600; }
.mail-row__to { font-size: 0.9rem; color: var(--ink-3); text-align: right; overflow-wrap: anywhere; }
.mail-row__wait { font-size: 0.86rem; color: var(--ochre-ink); }

/* ---------------------------------------------------------------- Footer */
.foot { background: var(--ink); color: color-mix(in srgb, var(--paper) 74%, var(--ink)); }
.foot a { color: inherit; text-decoration: none; }
.foot a:hover { color: var(--paper); }
.foot__top {
  display: grid; gap: clamp(30px, 4vw, 52px); grid-template-columns: 1fr;
  padding-block: clamp(48px, 6vw, 82px);
}
@media (min-width: 780px) { .foot__top { grid-template-columns: 1.4fr 1fr 1fr; } }
.foot__brand svg { width: 132px; color: var(--paper); }
.foot__tag { margin-top: 16px; font-size: 0.97rem; max-width: 34ch; }
.foot__cities { margin-top: 14px; font-size: 0.83rem; color: color-mix(in srgb, var(--paper) 50%, var(--ink)); }
.foot h2 {
  font-size: 0.73rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: color-mix(in srgb, var(--paper) 52%, var(--ink)); margin-bottom: 14px;
  font-weight: 600;
}
.foot li { padding: 5px 0; font-size: 0.95rem; }
.foot__bar {
  border-top: 1px solid rgba(255, 253, 249, 0.13);
  padding-block: 22px;
  display: flex; flex-wrap: wrap; gap: 12px 26px;
  align-items: center; justify-content: space-between;
  font-size: 0.83rem;
}
.pxu-sig a { border-bottom: 1px solid rgba(255, 253, 249, 0.4); }
.pxu-sig a:hover { border-bottom-color: var(--paper); }
.pxu-sig .heart { color: #ff6b8a; }

/* -------------------------------------------------------------- Reveal */
/* Startet NIE unsichtbar ohne JS: erst wenn .js gesetzt ist. */
.js [data-rev] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js [data-rev].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js [data-rev] { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------- 404 */
.nf { min-height: 62vh; display: flex; flex-direction: column; justify-content: center; }
