@charset "utf-8";
/* burc — more than burgers
   Designwelt „El Papel": das bedruckte Einwickelpapier als Grundflaeche,
   das Salbeigruen der Hausteller als Akzent, glattes Studioschwarz fuer den Abend.
   Aufbau: 1 Tokens · 2 Grundlagen · 3 Layout · 4 Kopf/Fuss · 5 Komponenten
           6 Seiten · 7 Bewegung · 8 Responsive · 9 Druck
   design & build: PixelUno · https://pixelUno.es */

/* ───────────────────────────── 1 Tokens ───────────────────────────── */
@font-face {
  font-family: "Playfair";
  src: url("assets/fonts/playfair-var.woff2") format("woff2-variations");
  font-weight: 500 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Schibsted";
  src: url("assets/fonts/schibsted-var.woff2") format("woff2-variations");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Flaechen */
  --paper: #f5f2ec;
  --paper-deep: #eee9df;
  --paper-card: #fbf9f5;
  --studio: #16181a;
  --studio-soft: #202325;

  /* Schrift auf Papier */
  --ink: #16181a;
  --ink-2: #45494b;
  --ink-3: #616668;

  /* Schrift auf Studio */
  --on-studio: #f3f1eb;
  --on-studio-2: #b7bcbd;

  /* Akzent */
  --sage: #9eaea4;
  --sage-deep: #52645c;
  --sage-soft: #e5eae6;
  --oak: #c9a97a;

  --line: rgba(22, 24, 26, 0.14);
  --line-soft: rgba(22, 24, 26, 0.08);
  --line-studio: rgba(243, 241, 235, 0.16);

  --preview: #6d28d9;
  --preview-ink: #ffffff;

  /* Lageplan */
  --plan-land: #efeade;
  --plan-sea: #d3dedb;
  --plan-coast: #9eaea4;
  --plan-green: #e4e8de;
  --plan-minor: #c8c2b4;
  --plan-street: #ddd6c7;
  --plan-axis: #16181a;
  --plan-halo: #9eaea4;
  --plan-pin: #16181a;
  --plan-rule: #16181a;

  /* Typo */
  --display: "Playfair", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --text: "Schibsted", ui-sans-serif, system-ui, "Segoe UI", Helvetica, Arial, sans-serif;

  --fs-h1: clamp(2.15rem, 1.45rem + 3vw, 4rem);
  --fs-h2: clamp(1.7rem, 1.25rem + 1.95vw, 2.9rem);
  --fs-h3: clamp(1.2rem, 1.08rem + 0.5vw, 1.5rem);
  --fs-lead: clamp(1.06rem, 1rem + 0.42vw, 1.3rem);
  --fs-body: clamp(1rem, 0.975rem + 0.11vw, 1.0625rem);
  --fs-sm: 0.875rem;
  --fs-xs: 0.78rem;

  /* Raster */
  --wrap: 76rem;
  --wrap-mid: 60rem;
  --gutter: clamp(1.25rem, 4.2vw, 4rem);
  --sec-y: clamp(4.5rem, 9vw, 9rem);
  --radius: 3px;
  --radius-lg: 5px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 0.42s;

  /* Signatur im Stylesheet: unsichtbar auf der Seite, im Code nachweisbar. */
  --studio-credit: "burc preview · design & build: PixelUno · https://pixelUno.es";
}

/* ─────────────────────────── 2 Grundlagen ─────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--head-h, 8.5rem) + 1rem);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--text);
  font-size: var(--fs-body);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.18; }

p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.22em; }
a:hover { text-decoration-color: var(--sage-deep); }

img, svg, video { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }

:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 3px;
  border-radius: 2px;
}
.on-studio :focus-visible { outline-color: var(--sage); }

::selection { background: var(--sage); color: var(--ink); }

.skip {
  position: absolute;
  left: 0.75rem;
  top: -100%;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  padding: 0.7rem 1.1rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: var(--radius);
}
.skip:focus { top: 0.75rem; }

.vh {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ───────────────────────────── 3 Layout ───────────────────────────── */
.wrap { width: min(100% - var(--gutter) * 2, var(--wrap)); margin-inline: auto; }
.wrap--mid { width: min(100% - var(--gutter) * 2, var(--wrap-mid)); }

.section { padding-block: var(--sec-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section--deep { background: var(--paper-deep); }
.section--studio {
  background: var(--studio);
  color: var(--on-studio);
}
.section--studio h1, .section--studio h2, .section--studio h3 { font-weight: 500; }

/* Papier: die echte Rastertextur des Markenpapiers.
   Bewusst NICHT als Flaechentapete hinter Fliesstext — dort konkurriert der
   Rapport mit dem Satz. Sie erscheint nur dort, wo sie ein Gegenstand ist:
   auf den Rezeptkarten. In den Fotos liegt sie ohnehin unter fast jedem Gericht. */
.paper { position: relative; isolation: isolate; }

.sechead { margin-bottom: clamp(2rem, 4vw, 3.4rem); }
/* Abschnittsmarke: der Salbeiteller als reine Grafik auf einer Haarlinie.
   Bewusst ohne Text — Kickerzeilen ueber Ueberschriften kommen hier nicht vor. */
.sechead__plate {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
  color: var(--sage-deep);
}
.section--studio .sechead__plate { color: var(--sage); }
.sechead__plate::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}
.sechead__plate::after {
  content: "";
  height: 1px;
  flex: 1;
  background: currentColor;
  opacity: 0.35;
}
.sechead__lead {
  font-size: var(--fs-lead);
  color: var(--ink-2);
  max-width: 46ch;
  margin-top: 1.1rem;
  line-height: 1.55;
}
.section--studio .sechead__lead { color: var(--on-studio-2); }
.sechead--split {
  display: grid;
  gap: clamp(1rem, 3vw, 3rem);
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
}
@media (min-width: 60rem) {
  .sechead--split { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
  .sechead--split .sechead__lead { margin-top: 0; }
}

.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }
.section--studio .rule { border-color: var(--line-studio); }

/* ──────────────────────── 4 Kopfzeile und Fuss ─────────────────────── */
 /* Der Vorschaustreifen bleibt immer sichtbar: eigener Klebepunkt ueber
    dem Menue. Die Leiste darunter darf sich beim Scrollen darunter schieben. */
.preview {
  position: sticky;
  top: 0;
  z-index: 101;
  background: var(--preview);
  color: var(--preview-ink);
  font-size: var(--fs-xs);
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 0.5rem var(--gutter);
  font-weight: 500;
}

.head {
  position: sticky;
  top: var(--preview-h, 2.1rem);
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.head--lifted { box-shadow: 0 1px 24px rgba(22, 24, 26, 0.07); }
.head--away { transform: translateY(calc(-100% - 1px)); }

.head__bar {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  min-height: 4.5rem;
  padding-block: 0.75rem;
}
.head__logo { flex: none; display: block; line-height: 0; }
.head__logo svg, .head__logo img { width: clamp(4.4rem, 7vw, 5.6rem); height: auto; color: var(--ink); }

.nav { display: none; margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }
.nav__link {
  font-size: var(--fs-sm);
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-2);
  padding-block: 0.35rem;
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.15rem;
  height: 2px;
  background: var(--sage-deep);
}

.langs { display: flex; align-items: center; gap: 0.15rem; }
.langs__item {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.5rem;
  text-decoration: none;
  color: var(--ink-3);
  border-radius: 2px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.langs__item:hover { color: var(--ink); background: var(--sage-soft); }
.langs__item[aria-current="true"] { color: var(--ink); background: var(--sage-soft); }

.head__actions { display: flex; align-items: center; gap: 0.5rem; margin-left: auto; }
@media (min-width: 64rem) { .head__actions { margin-left: 0; } }

.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0 0.6rem;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--ink);
}
.burger span { display: block; height: 1.5px; background: currentColor; transition: transform 0.3s var(--ease), opacity 0.2s; }
.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); }

.panel {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--paper);
  padding: calc(var(--head-h, 7rem) + 1.75rem) var(--gutter) 3rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.panel[hidden] { display: none !important; }
.panel__list { display: flex; flex-direction: column; gap: 0.25rem; }
.panel__link {
  font-family: var(--display);
  font-size: clamp(1.7rem, 8vw, 2.4rem);
  font-weight: 700;
  text-decoration: none;
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--line-soft);
  display: block;
}
.panel__link[aria-current="page"] { color: var(--sage-deep); }
.panel__foot { margin-top: auto; display: grid; gap: 1.25rem; }

.foot {
  background: var(--studio);
  color: var(--on-studio);
  padding-block: clamp(3.5rem, 7vw, 6rem) 2rem;
}
.foot__top { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }
@media (min-width: 48rem) { .foot__top { grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 1fr)); } }
.foot__mark { width: clamp(6rem, 12vw, 8.5rem); color: var(--on-studio); }
.foot__claim {
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 500;
  margin-top: 1.5rem;
  color: var(--sage);
}
.foot h2 {
  font-family: var(--text);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}
.foot a { color: var(--on-studio-2); text-decoration: none; }
.foot a:hover { color: var(--on-studio); text-decoration: underline; }
.foot__list { display: grid; gap: 0.55rem; font-size: var(--fs-sm); }
.foot__bottom {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-studio);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: var(--on-studio-2);
}
.foot__sig a { color: var(--sage); text-decoration: underline; text-underline-offset: 0.2em; }
.foot__heart { color: var(--sage); font-style: normal; }

/* ─────────────────────────── 5 Komponenten ────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--text);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { background: var(--sage-deep); }
.btn--ghost { border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(22, 24, 26, 0.04); }
.btn--ghostStudio { border-color: var(--line-studio); color: var(--on-studio); }
.btn--ghostStudio:hover { border-color: var(--sage); color: var(--sage); }
.btn--sm { min-height: 2.5rem; padding: 0.45rem 1rem; font-size: var(--fs-xs); }
.btn__arrow { transition: transform 0.25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem 0.4rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--paper-card);
}
.pill__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--sage-deep);
  flex: none;
}
.pill--closed .pill__dot { background: var(--ink-3); }
.section--studio .pill { background: transparent; border-color: var(--line-studio); }

.tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  background: var(--sage-soft);
  color: var(--sage-deep);
  white-space: nowrap;
}
.tag--vegan { background: #dfe9df; color: #40613f; }
.tag--smash { background: rgba(201, 169, 122, 0.22); color: #7a5a2c; }

figure { margin: 0; }
.shot {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper-deep);
}
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot--4x3 { aspect-ratio: 4 / 3; }
.shot--3x4 { aspect-ratio: 3 / 4; }

.grid { display: grid; gap: clamp(1.1rem, 2.4vw, 2rem); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
@media (min-width: 62rem) { .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* Karte: Gericht mit Foto */
.dish {
  display: flex;
  flex-direction: column;
  background: var(--paper-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
}
.dish:hover {
  border-color: var(--sage);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -18px rgba(22, 24, 26, 0.4);
}
.dish .shot img { transition: transform 0.7s var(--ease); }
.dish:hover .shot img { transform: scale(1.035); }
.dish__body { padding: clamp(1.1rem, 2vw, 1.5rem); display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.dish__head { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 0.35rem 1rem; align-items: baseline; }
.dish__name { font-size: var(--fs-h3); }
.dish__price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.dish__desc { color: var(--ink-2); font-size: var(--fs-sm); line-height: 1.55; margin: 0; }
.dish__tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: auto; padding-top: 0.4rem; }

/* Karte ohne Foto: das Rezept selbst ist das Bild */
.dish--recipe {
  background: var(--paper);
  border-color: var(--line);
  position: relative;
  isolation: isolate;
  justify-content: flex-end;
  min-height: 22rem;
}
.dish--recipe::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("assets/img/paper.webp") repeat;
  background-size: 150px;
  opacity: 0.05;
}
/* Der Textblock haengt am unteren Rand, darueber bleibt das Papier frei —
   die Karte liest sich wie ein Etikett auf dem Einwickelpapier. */
.dish--recipe .dish__body { padding: clamp(1.4rem, 2.6vw, 2rem); gap: 0.8rem; flex: 0 0 auto; }
.dish--recipe .dish__tags { margin-top: 0.2rem; padding-top: 0; }
.dish--recipe .dish__name { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
.dish--recipe .dish__desc { font-size: var(--fs-body); }
.dish--recipe .dish__mark {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

/* Momente des Tages */
.moment {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 1.6rem;
  border-top: 2px solid var(--ink);
}
.moment__when {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  order: 2;
}
.moment__title { order: 1; }
.moment__text { order: 3; }
.moment__text { color: var(--ink-2); margin: 0; }

/* Vertrauensraster */
.fact { padding-top: 1.2rem; border-top: 1px solid var(--line); }
.fact__title { font-family: var(--text); font-size: var(--fs-body); font-weight: 600; margin-bottom: 0.35rem; letter-spacing: 0; }
.fact__text { color: var(--ink-2); font-size: var(--fs-sm); margin: 0; }

.score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.4rem, 3vw, 2rem);
  background: var(--sage-soft);
  border-radius: var(--radius-lg);
  width: fit-content;
}
.score__value { font-family: var(--display); font-size: clamp(2.4rem, 6vw, 3.4rem); font-weight: 700; line-height: 1; }
.score__stars { color: var(--sage-deep); letter-spacing: 0.1em; font-size: 1.05rem; }
.score__meta { font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.45; }
.score__meta a { color: var(--ink); }

/* Speisekarte */
.tabs { display: flex; gap: 0.4rem; border-bottom: 1px solid var(--line); margin-bottom: 2rem; }
.tab {
  appearance: none;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 0.85rem 1.1rem;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink-3);
  cursor: pointer;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.tab:hover { color: var(--ink); }
.tab[aria-selected="true"] { color: var(--ink); border-bottom-color: var(--ink); }

.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.chip {
  appearance: none;
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.45rem 0.95rem;
  font-family: var(--text);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  transition: background 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease);
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.jump {
  position: sticky;
  top: calc(var(--head-h, 6.6rem) - 1px);
  transition: top var(--dur) var(--ease);
  z-index: 40;
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 2.5rem;
  padding-block: 0.6rem;
}
.jump__list {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 0.15rem;
  /* Weiche Kante rechts: zeigt an, dass die Leiste weitergeht */
  -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 2.5rem), transparent);
  mask-image: linear-gradient(90deg, #000 calc(100% - 2.5rem), transparent);
}
@media (min-width: 76rem) {
  .jump__list { -webkit-mask-image: none; mask-image: none; }
}
.jump__link {
  white-space: nowrap;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--ink-3);
  text-decoration: none;
  padding: 0.4rem 0.7rem;
  border-radius: 100px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.jump__link:hover { background: var(--sage-soft); color: var(--ink); }
.jump__link.is-active { background: var(--ink); color: var(--paper); }
.head-away .jump { top: calc(var(--preview-h, 2.1rem) - 1px); }

.course { margin-bottom: clamp(3rem, 6vw, 4.5rem); scroll-margin-top: 11rem; }
.course__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.75rem 1.5rem; margin-bottom: 1.5rem; }
.course__title { font-size: clamp(1.5rem, 3.2vw, 2.1rem); }
.course__note {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--sage-deep);
  background: var(--sage-soft);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}
/* Zweispaltig wie eine echte Karte. Gruppen mit Preisspalten
   (Krug/Fass/Flasche, Glas/Flasche) bleiben einspaltig und schmal. */
@media (min-width: 62rem) {
  .course--cols > ul,
  .course--cols .subcourse ul { columns: 2; column-gap: clamp(2.5rem, 5vw, 4.5rem); }
  .course--table > ul,
  .course--table .subcourse ul,
  .course--table .pricehead { max-width: 42rem; }
}
.line { break-inside: avoid; -webkit-column-break-inside: avoid; }

.line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1rem;
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--line-soft);
  align-items: baseline;
}
.line__name { font-weight: 600; }
.line__origin {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-top: 0.15rem;
}
.line__desc { grid-column: 1 / -1; color: var(--ink-3); font-size: var(--fs-sm); line-height: 1.5; margin: 0; }
.line__price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.line__prices { display: flex; gap: 1.1rem; }
.line__prices span { min-width: 3.6rem; text-align: right; }
.line__prices .is-empty { color: var(--line); }
.line__tags { display: inline-flex; gap: 0.3rem; margin-left: 0.5rem; vertical-align: 1px; }
.line[hidden] { display: none; }

.pricehead {
  display: grid;
  grid-template-columns: 1fr auto;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.pricehead__cols { display: flex; gap: 1.1rem; }
.pricehead__cols span { min-width: 3.6rem; text-align: right; }

.subcourse { margin-top: 2rem; }
.subcourse__title {
  font-family: var(--text);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.note {
  border-left: 2px solid var(--sage);
  padding: 0.2rem 0 0.2rem 1.15rem;
  color: var(--ink-2);
  font-size: var(--fs-sm);
  max-width: 60ch;
}

.allergens { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.allergens li {
  font-size: var(--fs-xs);
  color: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.25rem 0.7rem;
}

/* Reservierung */
.frame { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--paper-card); }
.frame iframe { width: 100%; min-height: 44rem; border: 0; display: block; }
.frame__gate { padding: clamp(2rem, 5vw, 3.5rem); text-align: center; display: grid; gap: 1rem; justify-items: center; }
.frame__gate h2 { font-size: var(--fs-h3); }
.frame__gate .btn { margin-top: 0.35rem; }
.frame__gate p { color: var(--ink-2); max-width: 44ch; font-size: var(--fs-sm); }

/* Lageplan */
.plan { width: 100%; height: auto; display: block; }
.plan__here { font-family: var(--display); font-size: 30px; font-weight: 700; fill: var(--ink); }
.plan__street { font-family: var(--text); font-size: 13px; font-weight: 600; letter-spacing: 1.5px; fill: var(--paper); }
.plan__water { font-family: var(--display); font-size: 19px; letter-spacing: 4px; fill: #6e8079; }
.plan__sand { font-family: var(--text); font-size: 12px; font-weight: 500; letter-spacing: 3px; fill: #93a49b; }
.plan__scaleLabel { font-family: var(--text); font-size: 13px; font-weight: 500; fill: var(--ink); }
.planbox { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--plan-land); }

/* Datenliste */
.dl { display: grid; gap: 1.1rem; }
.dl__row { display: grid; gap: 0.15rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--line-soft); }
.dl__row:last-child { border-bottom: 0; padding-bottom: 0; }
.dl__key { font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--sage-deep); }
.dl__val { font-size: var(--fs-lead); }
.dl__val a {
  text-decoration: underline;
  text-decoration-color: var(--sage);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}
.dl__val a:hover { text-decoration-color: var(--ink); }

/* Rechtstexte */
.legal { max-width: 68ch; }
.legal h2 { margin-top: clamp(3rem, 6vw, 4.5rem); scroll-margin-top: 9rem; }
.legal h3 { font-family: var(--text); font-size: var(--fs-body); font-weight: 700; margin-top: 2rem; margin-bottom: 0.5rem; letter-spacing: 0; }
.legal p { color: var(--ink-2); }
.legal__toc { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.warn {
  background: rgba(201, 169, 122, 0.16);
  border: 1px solid rgba(201, 169, 122, 0.5);
  border-color: color-mix(in srgb, var(--oak) 50%, transparent);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  font-size: var(--fs-sm);
  color: #6f5322;
  margin-bottom: 2rem;
}

/* ───────────────────────────── 6 Seiten ───────────────────────────── */
/* Hero: Text auf Papier, Foto daneben — kein Text auf Bild */
.hero { padding-top: clamp(2.5rem, 5vw, 4.5rem); padding-bottom: 0; }
/* Volle Breite, linker Innenabstand wie der Satzspiegel: das Foto laeuft
   dadurch bis an die rechte Bildschirmkante, ohne Rechenkunststuecke. */
.hero__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  width: 100%;
  padding-inline: max(var(--gutter), calc((100% - var(--wrap)) / 2));
}
@media (min-width: 62rem) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 5vw, 5rem);
    padding-right: 0;
  }
}
.hero__mark { width: clamp(7.5rem, 14vw, 11.5rem); color: var(--ink); margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem); }
.hero h1 { font-size: clamp(1.95rem, 1.3rem + 2vw, 2.9rem); }
.hero__lead { font-size: var(--fs-lead); color: var(--ink-2); margin-top: 1.35rem; max-width: 40ch; line-height: 1.55; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: clamp(1.75rem, 3vw, 2.5rem); }
.hero__meta { display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; align-items: center; margin-top: 1.75rem; font-size: var(--fs-sm); color: var(--ink-2); }
.hero__shot { position: relative; }
.hero__shot .shot { aspect-ratio: 4 / 3; border-radius: var(--radius-lg); }
.hero__shot img { object-position: 58% center; }
@media (min-width: 62rem) {
  .hero__shot .shot { aspect-ratio: 3 / 3.35; border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
}

.strip { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
@media (min-width: 48rem) { .strip { grid-template-columns: repeat(3, 1fr); } }

.split { display: grid; gap: clamp(2rem, 4.5vw, 4rem); align-items: center; }
@media (min-width: 58rem) { .split { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.split--wide { align-items: start; }
/* Kontaktseite: der Lageplan bekommt mehr Breite als die Datenliste */
@media (min-width: 58rem) {
  .split--plan { grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); }
}

/* Galerie: zwei Reihen im Wechsel 4+2 / 2+4, feste Reihenhoehe,
   damit keine Luecke entsteht und die Oberkanten fluchten. */
.gallery { display: grid; gap: clamp(0.75rem, 1.5vw, 1.1rem); grid-template-columns: 1fr; }
.gallery .shot { aspect-ratio: 4 / 3; }
@media (min-width: 48rem) {
  .gallery {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: clamp(12rem, 21vw, 19rem);
  }
  .gallery .shot { aspect-ratio: auto; height: 100%; }
  .gallery > :nth-child(1) { grid-column: span 4; }
  .gallery > :nth-child(2) { grid-column: span 2; }
  .gallery > :nth-child(3) { grid-column: span 2; }
  .gallery > :nth-child(4) { grid-column: span 4; }
}

.bar { display: grid; gap: clamp(1rem, 2vw, 1.5rem); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 52rem) { .bar { grid-template-columns: repeat(4, 1fr); } }
.bar__item { display: grid; gap: 0.7rem; }
.bar__name { font-family: var(--display); font-size: 1.1rem; font-weight: 500; }
.bar__price { font-size: var(--fs-sm); color: var(--on-studio-2); font-variant-numeric: tabular-nums; }
.bar .shot { background: var(--studio-soft); }

.cta { background: var(--sage-soft); border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 4rem); }
.cta__grid { display: grid; gap: clamp(1.5rem, 3vw, 3rem); align-items: center; }
@media (min-width: 52rem) { .cta__grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); } }
.cta__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.pagehead { padding-block: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 3rem); }
.pagehead__voice {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  font-weight: 500;
  color: var(--sage-deep);
  margin-top: 1.5rem;
}
.pagehead__lead { font-size: var(--fs-lead); color: var(--ink-2); max-width: 52ch; margin-top: 1.25rem; line-height: 1.55; }

/* ──────────────────────────── 7 Bewegung ──────────────────────────── */
.js [data-reveal] { opacity: 0; transform: translateY(14px); }
.js [data-reveal].is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.js [data-reveal-img] .shot img { clip-path: inset(0 0 12% 0); transform: scale(1.05); }
.js [data-reveal-img].is-in .shot img {
  clip-path: inset(0 0 0 0);
  transform: none;
  transition: clip-path 0.9s var(--ease), transform 0.9s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal],
  .js [data-reveal-img] .shot img { opacity: 1; transform: none; clip-path: none; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ─────────────────────────── 8 Responsive ─────────────────────────── */
@media (min-width: 64rem) {
  .nav { display: block; }
  .burger { display: none; }
  .panel { display: none !important; }
}
@media (max-width: 47.99rem) {
  .head__bar { min-height: 3.9rem; }
  .btn { width: auto; }
  .hero__actions .btn { flex: 1 1 auto; }
}

/* ───────────────────────────── 9 Druck ────────────────────────────── */
@media print {
  .preview, .head, .foot, .jump, .filters, .tabs, .btn, .frame { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .paper::before, .dish--recipe::before { display: none; }
  .section { padding-block: 1rem; }
  .line { break-inside: avoid; }
}
