/* ─────────────────────────────────────────────────────────────
   CafeBar spuntino – Baden
   Designsystem: Espresso-Dunkel, Cremeweiss, Tassenrot, Gold
   ───────────────────────────────────────────────────────────── */

:root {
  --dark:        #14100d;
  --dark-2:      #1d1712;
  --cream:       #f7f1e8;
  --cream-2:     #efe5d6;
  --ink:         #191310;
  --ink-soft:    #574a3f;
  --red:         #c8102e;
  --red-dark:    #9c0b23;
  --gold:        #c9a227;
  --line:        rgba(25, 19, 16, .12);
  --line-light:  rgba(247, 241, 232, .18);

  --font-display: "Playfair Display", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-brand:   "Quicksand", "Trebuchet MS", "Segoe UI", system-ui, sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --shell: 1180px;
  --gap: clamp(1rem, 3vw, 2rem);
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(25,19,16,.06), 0 8px 24px -18px rgba(25,19,16,.45);
  --shadow-lg: 0 30px 70px -40px rgba(25,19,16,.65);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, .96rem + .18vw, 1.08rem);
  line-height: 1.68;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg, iframe { max-width: 100%; }
img { display: block; height: auto; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
}
h2 { font-size: clamp(1.9rem, 1.2rem + 3vw, 3.2rem); }
h3 { font-size: clamp(1.1rem, 1rem + .5vw, 1.35rem); }

p { margin: 0 0 1.05em; }
a { color: inherit; }

.shell {
  width: min(100% - 2.4rem, var(--shell));
  margin-inline: auto;
}
@media (max-width: 520px) { .shell { width: min(100% - 1.8rem, var(--shell)); } }

.small { font-size: .85rem; line-height: 1.5; color: var(--ink-soft); }
.section-dark .small { color: rgba(247,241,232,.66); }

.sr-only {
  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: 1rem; top: -4rem; z-index: 200;
  background: var(--red); color: #fff; padding: .7rem 1.1rem;
  border-radius: 0 0 10px 10px; text-decoration: none; font-weight: 500;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

:where(a, button, [tabindex]):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ─────────────── Header ─────────────── */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  padding: .55rem 0;
  transition: background .3s var(--ease), box-shadow .3s var(--ease),
              backdrop-filter .3s var(--ease), padding .3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(20, 16, 13, .82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 rgba(247,241,232,.12), 0 18px 40px -34px #000;
  padding: .3rem 0;
}

.header-inner { display: flex; align-items: center; gap: 1.5rem; }

.brand {
  display: inline-flex; align-items: center; gap: .65rem;
  text-decoration: none; color: var(--cream); margin-right: auto;
}
.brand-mark { width: 42px; height: 42px; flex: none; filter: drop-shadow(0 6px 14px rgba(0,0,0,.35)); }
.brand-mark svg { width: 100%; height: 100%; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-brand); font-weight: 700;
  color: var(--red);
  font-size: clamp(1.15rem, 1.05rem + .45vw, 1.42rem);
  letter-spacing: .005em; white-space: nowrap;
  text-shadow: 0 1px 10px rgba(12,9,7,.7), 0 1px 2px rgba(12,9,7,.85);
}
.brand-cafe {
  font-family: var(--font-brand); font-weight: 500; font-style: italic;
  color: var(--cream);
  font-size: clamp(.86rem, .8rem + .2vw, .98rem);
  letter-spacing: .02em; margin-top: .16rem; white-space: nowrap;
  text-shadow: 0 1px 10px rgba(12,9,7,.7), 0 1px 2px rgba(12,9,7,.85);
}

.site-nav { display: flex; align-items: center; gap: clamp(.4rem, 1.4vw, 1.1rem); }
.site-nav a {
  position: relative; text-decoration: none; color: rgba(247,241,232,.88);
  font-size: .92rem; font-weight: 500; padding: .5rem .35rem;
  transition: color .2s var(--ease);
}
.site-nav a::after {
  content: ""; position: absolute; left: .35rem; right: .35rem; bottom: .28rem;
  height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.site-nav a:hover { color: #fff; }
.site-nav a:hover::after { transform: scaleX(1); }

.site-nav a.is-current { color: #fff; }
.site-nav a.is-current::after { transform: scaleX(1); }

.nav-cta {
  border: 1px solid rgba(247,241,232,.42); border-radius: 999px;
  padding: .5rem 1rem !important; font-variant-numeric: tabular-nums;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--red); border-color: var(--red); color: #fff; }

.nav-toggle {
  display: none; width: 46px; height: 42px; border: 1px solid rgba(247,241,232,.32);
  background: rgba(20,16,13,.35); border-radius: 10px; cursor: pointer;
  padding: 0; position: relative;
}
.nav-toggle span {
  position: absolute; left: 12px; right: 12px; height: 1.6px; background: var(--cream);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; inset: 0 0 auto; top: 0; padding: 5.6rem 1.6rem 2rem;
    height: 100dvh; min-height: 100vh; overflow-y: auto;
    flex-direction: column; align-items: stretch; gap: .2rem;
    background: rgba(20,16,13,.97);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    transform: translateY(-102%); transition: transform .38s var(--ease);
    box-shadow: 0 30px 60px -30px #000;
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav a { font-size: 1.12rem; padding: .85rem .2rem; border-bottom: 1px solid var(--line-light); }
  .site-nav a::after { display: none; }
  .nav-cta { text-align: center; margin-top: .9rem; border-bottom: 0 !important; }
}

/* ─────────────── Buttons ─────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font: inherit; font-weight: 500; font-size: .95rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform .22s var(--ease), background .22s var(--ease),
              color .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--red); color: #fff; box-shadow: 0 16px 34px -22px rgba(200,16,46,.95); }
.btn-primary:hover { background: var(--red-dark); }

.btn-ghost { color: var(--cream); border-color: rgba(247,241,232,.45); background: rgba(20,16,13,.22); }
.btn-ghost:hover { background: rgba(247,241,232,.14); border-color: rgba(247,241,232,.8); }

.btn-outline { color: var(--cream); border-color: rgba(247,241,232,.4); }
.btn-outline:hover { background: var(--cream); color: var(--dark); }

.link-arrow { color: var(--red); text-decoration: none; font-weight: 500; }
.link-arrow span { display: inline-block; transition: transform .22s var(--ease); }
.link-arrow:hover span { transform: translateX(4px); }

/* ─────────────── Hero ─────────────── */
.hero {
  position: relative; isolation: isolate;
  min-height: 100vh; min-height: 100svh; display: flex; align-items: flex-end;
  padding: 8rem 0 clamp(3.2rem, 7vw, 6rem);
  color: var(--cream); overflow: hidden;
  background: var(--dark);
}
.hero-media {
  position: absolute; inset: -2% -2% -2% -2%; z-index: -2;
  background: url("assets/espresso.jpg") center 42% / cover no-repeat;
  animation: heroDrift 26s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to   { transform: scale(1.12) translate3d(-1.2%, -1.4%, 0); }
}
.hero-veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,16,13,.74) 0%, rgba(20,16,13,.22) 32%, rgba(20,16,13,.74) 78%, rgba(20,16,13,.95) 100%),
    linear-gradient(96deg, rgba(20,16,13,.9) 0%, rgba(20,16,13,.72) 30%, rgba(20,16,13,.28) 58%, rgba(20,16,13,0) 78%),
    radial-gradient(120% 90% at 12% 92%, rgba(20,16,13,.88) 0%, rgba(20,16,13,0) 62%);
}
.hero-inner { position: relative; }
.hero-title, .hero-lead, .hero .eyebrow, .hero .status {
  text-shadow: 0 1px 2px rgba(12,9,7,.75), 0 6px 26px rgba(12,9,7,.7);
}
.eyebrow {
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  font-weight: 500; color: var(--gold); margin-bottom: 1.1rem;
}
.hero .eyebrow {
  color: #f4d79a;
  font-size: clamp(.78rem, .74rem + .2vw, .86rem);
  letter-spacing: .2em;
  font-weight: 600;
}
.hero-title {
  font-size: clamp(2.7rem, 1.3rem + 6.8vw, 6rem);
  font-weight: 500; letter-spacing: -.015em; line-height: 1.06;
  margin-bottom: .35em; text-wrap: balance;
}
.hero-title em { font-style: italic; color: #f3c9a0; }
.hero-lead {
  max-width: 46ch; font-size: clamp(1.02rem, .97rem + .3vw, 1.2rem);
  color: rgba(247,241,232,.88); margin-bottom: 1.9rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.status {
  display: inline-flex; align-items: center; gap: .55rem;
  margin: 1.8rem 0 0; font-size: .86rem; color: rgba(247,241,232,.82);
  background: rgba(20,16,13,.42); border: 1px solid var(--line-light);
  padding: .5rem 1rem; border-radius: 999px; backdrop-filter: blur(6px);
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #6b6459; flex: none;
  box-shadow: 0 0 0 0 rgba(120, 200, 120, .6);
}
.status.is-open .status-dot { background: #63c46b; animation: pulse 2.4s ease-out infinite; }
.status.is-closed .status-dot { background: #d0483f; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(99,196,107,.55); }
  70%  { box-shadow: 0 0 0 9px rgba(99,196,107,0); }
  100% { box-shadow: 0 0 0 0 rgba(99,196,107,0); }
}

.scroll-cue {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  width: 26px; height: 44px; border: 1px solid rgba(247,241,232,.42);
  border-radius: 999px; display: grid; place-items: start center; padding-top: 8px;
}
.scroll-cue span { width: 3px; height: 8px; border-radius: 2px; background: var(--cream); animation: cue 1.9s var(--ease) infinite; }
@keyframes cue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(16px); opacity: 0; } 100% { opacity: 0; } }
@media (max-width: 620px) { .scroll-cue { display: none; } }

/* ─────────────── Sections ─────────────── */
.section { padding: clamp(4.2rem, 9vw, 8.5rem) 0; }

:where(main[id], section[id]) { scroll-margin-top: calc(4.6rem + 10px); }
@media (max-width: 880px) { :where(main[id], section[id]) { scroll-margin-top: calc(4.2rem + 10px); } }
.section-dark { background: var(--dark); color: var(--cream); }
.section-head { max-width: 42ch; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section-head .eyebrow { color: var(--red); }
.section-dark .section-head .eyebrow, .section-dark .eyebrow { color: var(--gold); }
.section-note { color: var(--ink-soft); max-width: 46ch; }

.welcome-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.6rem, 4vw, 3.6rem); align-items: center;
  margin-bottom: clamp(2.6rem, 5vw, 4.4rem);
}
.welcome-text .lead { font-size: clamp(1.05rem, 1rem + .4vw, 1.25rem); }
.pill-row { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 1.6rem 0 0; }
.pill-row li {
  font-size: .8rem; letter-spacing: .04em; padding: .42rem .9rem; border-radius: 999px;
  border: 1px solid var(--line); color: var(--ink-soft); background: rgba(255,255,255,.5);
}
.welcome-figure { margin: 0; }
.welcome-figure img {
  width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 11; object-fit: cover;
}
.welcome-figure figcaption {
  margin-top: .8rem; font-size: .82rem; color: var(--ink-soft); font-style: italic;
}

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.card {
  background: #fffdf9; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.4rem, 2.4vw, 2rem); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(200,16,46,.28); }
.card h3 { margin-bottom: .35rem; }
.card p { margin: 0; color: var(--ink-soft); font-size: .96rem; }
.card-icon {
  display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 1.1rem;
  border-radius: 12px; background: rgba(200,16,46,.08); color: var(--red);
}
.card-icon svg { width: 24px; height: 24px; }

/* ─────────────── Gastgeber ─────────────── */
.host { position: relative; overflow: hidden; }
.host::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 78% 42%, rgba(200,16,46,.22) 0%, rgba(200,16,46,0) 65%),
    radial-gradient(50% 60% at 12% 12%, rgba(201,162,39,.16) 0%, rgba(201,162,39,0) 70%);
  pointer-events: none;
}
.host-grid {
  position: relative; display: grid; grid-template-columns: 1.02fr .98fr;
  gap: clamp(1.6rem, 4vw, 3.4rem); align-items: center;
}
.host-copy h2 { color: var(--cream); }
.host-role {
  font-size: .76rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 500; color: var(--gold); margin: -.35rem 0 1.4rem;
}
.host-copy .lead { color: rgba(247,241,232,.88); font-size: clamp(1.03rem, .98rem + .35vw, 1.2rem); max-width: 46ch; }
.host-note { color: rgba(247,241,232,.72); max-width: 44ch; }
.host blockquote {
  margin: 1.8rem 0; padding: 0 0 0 1.2rem; border-left: 2px solid var(--gold);
}
.host blockquote p {
  font-family: var(--font-display); font-weight: 500; line-height: 1.15;
  font-size: clamp(1.35rem, 1.15rem + 1vw, 2rem);
  font-style: italic; margin: 0 0 .3rem; color: #f3c9a0;
}
.host blockquote cite { font-style: normal; font-size: .86rem; color: rgba(247,241,232,.66); }
.host-figure { margin: 0; }
.host-figure img {
  width: 100%; filter: drop-shadow(0 40px 60px rgba(0,0,0,.6));
  animation: floaty 7s ease-in-out infinite alternate;
}
@keyframes floaty {
  from { transform: translateY(-8px); }
  to   { transform: translateY(10px); }
}

/* ─────────────── Karte ─────────────── */
.tabs {
  display: flex; flex-wrap: wrap; gap: .4rem; padding: .35rem;
  background: rgba(25,19,16,.05); border: 1px solid var(--line);
  border-radius: 999px; width: fit-content; margin-bottom: 2rem;
}
.tab {
  font: inherit; font-size: .92rem; font-weight: 500; cursor: pointer;
  border: 0; background: transparent; color: var(--ink-soft);
  padding: .6rem 1.25rem; border-radius: 999px;
  transition: background .22s var(--ease), color .22s var(--ease), box-shadow .22s var(--ease);
}
.tab:hover { color: var(--ink); }
.tab.is-active { background: var(--red); color: #fff; box-shadow: 0 12px 26px -18px rgba(200,16,46,.9); }

.panel { animation: fade .35s var(--ease) both; }
.panel[hidden] { display: none; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Gruppen innerhalb einer Karten-Kategorie */
.menu-group + .menu-group { margin-top: clamp(1.8rem, 3.5vw, 2.8rem); }
.menu-group-title {
  font-family: var(--font-body);
  font-size: .76rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--red); margin: 0 0 .5rem; padding-bottom: .55rem;
  border-bottom: 1px solid rgba(200,16,46,.26);
  display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap;
}
.menu-group-note {
  font-size: .68rem; letter-spacing: .12em; color: var(--ink-soft); font-weight: 500;
}

.menu-list {
  list-style: none; margin: 0; padding: 0;
  columns: 2; column-gap: clamp(2rem, 6vw, 5rem);
}
.menu-list--wide { columns: 1; }
.menu-list li {
  break-inside: avoid; display: flex; align-items: baseline; gap: .6rem;
  padding: .62rem 0; border-bottom: 1px solid rgba(25,19,16,.07);
}
.m-name { color: var(--ink); }
.m-name em { font-style: normal; font-size: .82rem; color: var(--ink-soft); display: block; }
.m-size { font-size: .78rem; color: var(--ink-soft); white-space: nowrap; font-variant-numeric: tabular-nums; }
.m-dots { flex: 1 1 auto; border-bottom: 1px dotted rgba(25,19,16,.28); transform: translateY(-3px); min-width: 1.5rem; }
.m-price { font-variant-numeric: tabular-nums; font-weight: 500; color: var(--red); white-space: nowrap; }
.m-price--multi { display: inline-flex; gap: clamp(.6rem, 1.6vw, 1.2rem); }
.m-price--multi > span { display: inline-flex; align-items: baseline; gap: .3rem; white-space: nowrap; }
.m-price--multi b { font-weight: 400; font-size: .74rem; color: var(--ink-soft); }
.menu-foot { margin-top: 1.8rem; font-size: .85rem; color: var(--ink-soft); max-width: 62ch; }

/* ─────────────── Film ─────────────── */
.film-figure { margin: 0 auto; max-width: 1000px; }
.film {
  display: block; width: 100%; height: auto;
  background: #000; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); outline: none;
}
.film:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.film-figure figcaption {
  margin-top: .85rem; font-size: .82rem; color: var(--ink-soft); font-style: italic;
}

/* ─────────────── Impressionen / Galerie ─────────────── */
.gallery {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(.55rem, 1.3vw, 1rem);
}
.tile {
  display: block; width: 100%; aspect-ratio: 1 / 1; padding: 0;
  background: #0b0806; border: 1px solid rgba(25,19,16,.2); border-radius: 12px;
  overflow: hidden; cursor: zoom-in; position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.tile img { width: 100%; height: 100%; object-fit: contain; display: block; }
.tile::after {
  content: ""; position: absolute; inset: 0; border-radius: 11px;
  box-shadow: inset 0 0 0 1px rgba(247,241,232,.06);
  background: linear-gradient(180deg, rgba(247,241,232,.06), rgba(247,241,232,0) 40%);
  opacity: 0; transition: opacity .3s var(--ease);
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(200,16,46,.45); }
.tile:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  border: 0; padding: 0; background: transparent; color: var(--cream);
  max-width: min(1080px, 92vw); width: auto; overflow: visible;
}
.lightbox::backdrop { background: rgba(10,7,5,.9); backdrop-filter: blur(4px); }
.lightbox figure { margin: 0; }
.lightbox img {
  display: block; margin: 0 auto; max-width: 100%; max-height: 76vh;
  border-radius: 10px; background: #0b0806; box-shadow: 0 40px 90px -50px #000;
}
.lightbox figcaption {
  margin-top: 1rem; text-align: center;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1rem, .95rem + .4vw, 1.25rem);
}
.lightbox-hint { margin: .35rem 0 0; text-align: center; font-size: .78rem; color: rgba(247,241,232,.6); }
.lightbox-close {
  position: fixed; top: clamp(.6rem, 2vw, 1.4rem); right: clamp(.6rem, 2vw, 1.4rem);
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid rgba(247,241,232,.3);
  background: rgba(20,16,13,.6); color: var(--cream); cursor: pointer;
  transition: background .22s var(--ease), transform .22s var(--ease);
}
.lightbox-close svg { width: 20px; height: 20px; }
.lightbox-close:hover { background: var(--red); transform: rotate(90deg); }

@media (max-width: 980px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* ─────────────── Zitat-Band ─────────────── */
.quote-band { position: relative; isolation: isolate; overflow: hidden; color: var(--cream); }
.quote-media {
  position: absolute; inset: 0; z-index: -2;
  background: url("assets/espresso.jpg") center 30% / cover no-repeat;
}
.quote-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,16,13,.94) 0%, rgba(20,16,13,.66) 55%, rgba(20,16,13,.88) 100%);
}
.quote-inner { padding: clamp(3.4rem, 8vw, 7rem) 0; }
.quote-inner blockquote { margin: 0; max-width: 34ch; }
.quote-inner p {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.55rem, 1.1rem + 2.3vw, 2.9rem); line-height: 1.2; margin-bottom: .5rem;
}
.quote-inner cite { font-style: normal; font-size: .84rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }

/* ─────────────── Kontakt ─────────────── */
.info-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(1.8rem, 4vw, 3.6rem); }
.info-block + .info-block { margin-top: 2.2rem; padding-top: 2.2rem; border-top: 1px solid var(--line); }
.info-block h3 { color: var(--red); font-size: 1.02rem; letter-spacing: .02em; margin-bottom: .6rem; }
.info-block p { margin-bottom: .5rem; }
.info-block a { text-decoration: none; border-bottom: 1px solid rgba(200,16,46,.35); }
.info-block a:hover { border-color: var(--red); }

.hours { border-collapse: collapse; width: 100%; max-width: 380px; }
.hours th, .hours td { text-align: left; padding: .48rem 0; font-weight: 400; border-bottom: 1px solid rgba(25,19,16,.08); }
.hours th { color: var(--ink-soft); font-weight: 500; }
.hours td { text-align: right; font-variant-numeric: tabular-nums; }
.hours tr.is-today th, .hours tr.is-today td { color: var(--red); font-weight: 600; }
.hours tr.is-today th::after { content: " · heute"; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--red); }

.map-wrap { display: flex; flex-direction: column; }
.map-wrap iframe {
  width: 100%; border: 1px solid var(--line); border-radius: var(--radius);
  aspect-ratio: 4 / 3; min-height: 320px; box-shadow: var(--shadow-sm);
  filter: saturate(.92) contrast(1.02);
}
.map-note { margin: .9rem 0 0; font-size: .85rem; color: var(--ink-soft); }

/* ─────────────── Footer ─────────────── */
.site-footer {
  background: var(--dark); color: rgba(247,241,232,.75);
  padding: clamp(2.6rem, 5vw, 4rem) 0 1.6rem; margin-top: 0;
}
.footer-inner {
  display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 1.6rem;
  align-items: start; padding-bottom: 1.6rem; border-bottom: 1px solid var(--line-light);
}
.footer-brand .brand-name {
  font-family: var(--font-brand); font-weight: 700;
  font-size: 1.7rem; margin: 0 0 .1rem; color: var(--cream); letter-spacing: .005em;
}
.brand-claim {
  font-family: var(--font-brand); font-weight: 500;
  font-size: .7rem; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(247,241,232,.55); margin: 0 0 .5rem;
}
.footer-brand .small { margin: 0; }
.footer-nav { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; }
.footer-nav a, .linklike {
  color: rgba(247,241,232,.78); text-decoration: none; font-size: .92rem;
  background: none; border: 0; padding: 0; font: inherit; cursor: pointer;
}
.footer-nav a:hover, .linklike:hover { color: #fff; }
.footer-meta { margin: 0; text-align: right; }
.footer-meta a { color: rgba(247,241,232,.78); text-decoration: none; }
.footer-meta a:hover { color: #fff; }
.footer-legal { width: min(100% - 2.4rem, var(--shell)); margin: 1.4rem auto 0; font-size: .78rem; }

/* ─────────────── Dialog ─────────────── */
.legal-dialog {
  border: 0; border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.6rem);
  max-width: 620px; width: calc(100% - 2rem);
  background: var(--cream); color: var(--ink); box-shadow: var(--shadow-lg);
}
.legal-dialog::backdrop { background: rgba(20,16,13,.66); backdrop-filter: blur(3px); }
.legal-dialog h2 { font-size: clamp(1.4rem, 1.2rem + 1vw, 1.9rem); }
.legal-dialog h3 { font-size: 1rem; margin-top: 1.4rem; color: var(--red); }
.legal-dialog a { color: var(--red); }
.legal-close { margin: 1.6rem 0 0; display: flex; justify-content: flex-end; }

/* ─────────────── Reveal ─────────────── */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media, .host-figure img, .scroll-cue span, .status-dot { animation: none !important; }
}

/* ─────────────── Responsive ─────────────── */
@media (max-width: 980px) {
  .welcome-grid, .host-grid, .info-grid { grid-template-columns: 1fr; }
  .host-grid { gap: 2.4rem; }
  .host-figure { order: -1; max-width: 520px; margin-inline: auto; }
  .cards { grid-template-columns: 1fr; }
  .menu-list { columns: 1; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-meta { text-align: left; }
}
@media (max-width: 620px) {
  .hero { min-height: auto; padding-top: 7rem; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .tabs {
    width: 100%; border-radius: 14px; flex-wrap: nowrap;
    overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .tabs::-webkit-scrollbar { display: none; }
  .tab { flex: 0 0 auto; }
  .map-wrap iframe { aspect-ratio: 1 / 1; min-height: 300px; }
}

@media print {
  .site-header, .hero-media, .hero-veil, .scroll-cue, .map-wrap iframe, .quote-media { display: none; }
  body { background: #fff; color: #000; }
}
