/* Brüderla Bamberg — Wirtshaus-Plakat
   Palette aus Logo & Fassade: Ink #1B1A19 (Logo-Grund), Papier #F4EDE3 (Sandstein),
   Ziegel #A8472F (Fassadenschild), Hopfen #D9CDB8 */

@font-face {
  font-family: 'Marcellus';
  src: url('fonts/marcellus.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'UnifrakturMaguntia';
  src: url('fonts/unifraktur.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}

:root {
  --ink: #1b1a19;
  --ink-soft: #26231f;
  --paper: #f4ede3;
  --paper-dim: #e9dfd0;
  --brick: #a8472f;
  --brick-deep: #8c3623;
  --cream: #f8f3ea;
  --line: rgba(27, 26, 25, .18);
  --line-light: rgba(244, 237, 227, .22);
  --serif: 'Marcellus', 'Times New Roman', serif;
  --fraktur: 'UnifrakturMaguntia', 'Old English Text MT', serif;
  --body: Georgia, 'Iowan Old Style', 'Times New Roman', serif;
  --sans: system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, video, iframe { display: block; max-width: 100%; }
a { color: inherit; }

.wrap { width: min(1180px, 92vw); margin: 0 auto; }

/* ---------- Topbar ---------- */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  background: rgba(27, 26, 25, .92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line-light);
}
.topbar-in {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 42px; width: auto; }
.brand span {
  font-family: var(--serif); font-size: 1.05rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--cream);
}
.topnav { display: flex; align-items: center; gap: 26px; }
.topnav a {
  font-family: var(--sans); font-size: .82rem; letter-spacing: .12em;
  text-transform: uppercase; text-decoration: none; color: var(--cream);
  opacity: .85; padding: 6px 0; border-bottom: 1px solid transparent;
}
.topnav a:hover { opacity: 1; border-bottom-color: var(--brick); }
.topnav a.nav-cta {
  background: var(--brick); color: var(--cream); padding: 10px 18px;
  border-bottom: none; border-radius: 2px; opacity: 1; white-space: nowrap;
}
.topnav a.nav-cta:hover { background: var(--brick-deep); }
@media (max-width: 720px) {
  .topnav a:not(.nav-cta) { display: none; }
  .topnav a.nav-cta { padding: 9px 13px; font-size: .74rem; }
}
@media (max-width: 480px) {
  .brand span { display: none; }
  .topbar { background: rgba(27, 26, 25, .97); }
}

/* ---------- Hero: das Plakat ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  background: var(--ink);
  overflow: hidden;
  padding: 96px 0 0;
}
.hero-kicker {
  display: flex; align-items: baseline; gap: 18px;
  font-family: var(--fraktur); color: var(--brick);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}
.hero-kicker small {
  font-family: var(--sans); font-size: .8rem; letter-spacing: .28em;
  text-transform: uppercase; color: rgba(244, 237, 227, .6);
}
.hero-mark {
  position: relative; z-index: 3;
  margin-top: 6px;
  overflow: hidden;
}
.hero-mark span {
  display: block;
  font-family: var(--serif);
  font-size: clamp(58px, 15.4vw, 228px);
  line-height: .98;
  letter-spacing: .015em;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
  transform: translateY(112%);
}
.loaded .hero-mark span {
  transform: translateY(0);
  transition: transform .9s cubic-bezier(.19, 1, .22, 1);
}
.hero-grid {
  position: relative; z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 48px;
  align-items: end;
  padding-bottom: 72px;
}
.hero-copy { padding-bottom: 8px; }
.hero-sub {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.45;
  max-width: 30ch;
  color: var(--cream);
}
.hero-sub em { font-family: var(--fraktur); font-style: normal; color: var(--brick); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: .92rem; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; padding: 15px 26px; border-radius: 2px;
  border: 1px solid transparent; cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-solid { background: var(--brick); color: var(--cream); }
.btn-solid:hover { background: var(--brick-deep); }
.btn-ghost { border-color: var(--line-light); color: var(--cream); }
.btn-ghost:hover { border-color: var(--cream); }
.btn-ink { background: var(--ink); color: var(--cream); }
.btn-ink:hover { background: #000; }

.hero-photo {
  position: relative;
  clip-path: inset(0 0 100% 0);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .45);
}
.loaded .hero-photo {
  clip-path: inset(0 0 0 0);
  transition: clip-path 1s cubic-bezier(.65, 0, .35, 1) .15s;
}
.hero-photo img { width: 100%; height: auto; }
.hero-photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  font-family: var(--sans); font-size: .72rem; letter-spacing: .08em;
  color: rgba(244, 237, 227, .85);
  padding: 34px 16px 12px;
  background: linear-gradient(transparent, rgba(27, 26, 25, .85));
}
.hero-strip {
  position: relative; z-index: 4;
  border-top: 1px solid var(--line-light);
  background: var(--ink);
}
.hero-strip-in {
  display: flex; flex-wrap: wrap; gap: 8px 34px;
  justify-content: space-between; align-items: center;
  padding: 14px 0;
  font-family: var(--sans); font-size: .82rem; letter-spacing: .06em;
  color: rgba(244, 237, 227, .78);
}
.hero-strip-in strong { color: var(--cream); font-weight: 600; }
@media (min-width: 901px) {
  .hero-photo { margin-top: -150px; }
  .hero-copy { padding-bottom: 40px; }
}
@media (max-width: 900px) {
  .hero { padding-top: 84px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; align-items: start; padding-bottom: 40px; }
  .hero-photo { max-width: 430px; }
  .hero-mark span { font-size: clamp(44px, 16.8vw, 228px); }
}

/* ---------- Zitat ---------- */
.zitat { background: var(--paper); color: var(--ink); padding: 96px 0; }
.zitat blockquote {
  max-width: 820px; margin: 0 auto; text-align: center;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem); line-height: 1.65;
}
.zitat blockquote::before {
  content: '„'; display: block;
  font-family: var(--serif); font-size: 4rem; line-height: .5;
  color: var(--brick); margin-bottom: 26px;
}
.zitat cite {
  display: block; margin-top: 28px;
  font-family: var(--sans); font-style: normal; font-size: .8rem;
  letter-spacing: .22em; text-transform: uppercase; color: rgba(27, 26, 25, .55);
}

/* ---------- Geschichte ---------- */
.geschichte { background: var(--ink); padding: 104px 0; }
.geschichte-grid {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 64px; align-items: start;
}
.geschichte h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.12; color: var(--cream);
}
.geschichte h2 em {
  font-family: var(--fraktur); font-style: normal; color: var(--brick);
  display: block; font-size: .62em; margin-bottom: 8px;
}
.geschichte p { color: rgba(244, 237, 227, .82); margin-bottom: 1.2em; }
.geschichte .jahr {
  font-family: var(--serif); font-size: 1rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--brick); margin-bottom: 18px; display: block;
}
.fassliste {
  list-style: none; margin: 26px 0 0; border-top: 1px solid var(--line-light);
}
.fassliste li {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 13px 0; border-bottom: 1px solid var(--line-light);
  font-size: 1rem; color: rgba(244, 237, 227, .88);
}
.fassliste li span:last-child { font-family: var(--sans); font-size: .85rem; color: rgba(244,237,227,.55); white-space: nowrap; }
@media (max-width: 900px) {
  .geschichte-grid { grid-template-columns: 1fr; gap: 34px; }
}

/* ---------- Karte ---------- */
.karte { background: var(--paper); color: var(--ink); padding: 104px 0; }
.karte-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 48px; }
.karte h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.1;
}
.karte h2 small {
  display: block; font-family: var(--sans); font-size: .8rem;
  letter-spacing: .26em; text-transform: uppercase; color: var(--brick); margin-bottom: 10px;
}
.karte-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.karte-group h3 {
  font-family: var(--serif); font-weight: 400; font-size: 1.35rem;
  border-bottom: 2px solid var(--ink); padding-bottom: 10px; margin-bottom: 6px;
}
.karte-group h3 small { font-family: var(--sans); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(27,26,25,.5); float: right; margin-top: .5em; }
.menü-item { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.menü-item div { flex: 1; }
.menü-item strong { font-weight: 600; font-size: 1.02rem; display: block; }
.menü-item span.desc { display: block; font-size: .88rem; color: rgba(27, 26, 25, .62); margin-top: 2px; }
.menü-item .preis { font-family: var(--sans); font-weight: 600; white-space: nowrap; font-size: .98rem; }
.karte-note { font-family: var(--sans); font-size: .8rem; color: rgba(27,26,25,.55); margin-top: 14px; }
.hoppy {
  margin-top: 60px;
  background: var(--brick); color: var(--cream);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px; padding: 26px 34px; border-radius: 3px;
}
.hoppy .tag { font-family: var(--fraktur); font-size: 1.7rem; line-height: 1; }
.hoppy p { font-family: var(--sans); font-size: .95rem; }
.karte-cta { text-align: center; margin-top: 56px; }
.karte-cta .btn { font-size: 1rem; padding: 18px 34px; }
@media (max-width: 860px) { .karte-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Imagefilm ---------- */
.film { background: var(--ink); padding: 104px 0; }
.film h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.4rem); margin-bottom: 14px;
}
.film h2 small {
  display: block; font-family: var(--sans); font-size: .8rem;
  letter-spacing: .26em; text-transform: uppercase; color: var(--brick); margin-bottom: 10px;
}
.film p.lead { color: rgba(244, 237, 227, .75); max-width: 56ch; margin-bottom: 40px; }
.film-frame {
  position: relative; background: #000;
  border: 1px solid var(--line-light);
}
.film-frame video { width: 100%; height: auto; }

/* ---------- Besuch ---------- */
.besuch { background: var(--paper); color: var(--ink); padding: 104px 0; }
.besuch h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.4rem); margin-bottom: 44px;
}
.besuch h2 small {
  display: block; font-family: var(--sans); font-size: .8rem;
  letter-spacing: .26em; text-transform: uppercase; color: var(--brick); margin-bottom: 10px;
}
.besuch-grid {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 56px; align-items: start;
}
.besuch-block h3 {
  font-family: var(--serif); font-weight: 400; font-size: 1.3rem; margin-bottom: 14px;
}
.zeiten { list-style: none; border-top: 1px solid var(--line); margin-bottom: 26px; }
.zeiten li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 10px 0; border-bottom: 1px solid var(--line);
  font-family: var(--sans); font-size: .95rem;
}
.zeiten li.today { font-weight: 700; }
.besuch-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.besuch-actions .btn { font-size: .84rem; padding: 13px 20px; }
.btn-outline-ink { border-color: var(--ink); color: var(--ink); }
.btn-outline-ink:hover { background: var(--ink); color: var(--cream); }
.reservier-box { margin-bottom: 40px; }
#teburio-2krsWCuL6TaDzHPgQ { min-height: 60px; }
.reservier-note { font-family: var(--sans); font-size: .84rem; color: rgba(27,26,25,.62); margin-top: 12px; }
.map-frame {
  border: 1px solid var(--line); background: var(--paper-dim);
  height: 380px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: saturate(.85); }
.map-fallback { font-family: var(--sans); font-size: .8rem; margin-top: 10px; }
.map-fallback a { color: var(--brick); }
@media (max-width: 900px) {
  .besuch-grid { grid-template-columns: 1fr; gap: 40px; }
  .map-frame { height: 300px; }
}

/* ---------- Footer ---------- */
.footer { background: var(--ink); border-top: 1px solid var(--line-light); padding: 44px 0; }
.footer-in {
  display: flex; flex-wrap: wrap; gap: 14px 40px;
  justify-content: space-between; align-items: center;
  font-family: var(--sans); font-size: .82rem; color: rgba(244, 237, 227, .65);
}
.footer-in a { color: rgba(244, 237, 227, .85); text-decoration: none; border-bottom: 1px solid var(--line-light); }
.footer-in a:hover { color: var(--cream); }
.footer-links { display: flex; gap: 22px; }

/* ---------- Legal pages ---------- */
.legal-page { background: var(--paper); color: var(--ink); padding: 140px 0 90px; }
.legal-page article { max-width: 780px; margin: 0 auto; }
.legal-page h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 40px;
}
.legal-page h2 {
  font-family: var(--serif); font-weight: 400; font-size: 1.45rem;
  margin: 38px 0 12px;
}
.legal-page h3 {
  font-family: var(--serif); font-weight: 400; font-size: 1.15rem;
  margin: 30px 0 10px;
}
.legal-page h4 { font-family: var(--sans); font-size: .98rem; margin: 24px 0 8px; }
.legal-page p { margin-bottom: 14px; font-size: .98rem; color: rgba(27,26,25,.85); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); }
.reveal.in {
  opacity: 1; transform: none;
  transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero-mark span { transform: none; }
  .hero-photo { clip-path: none; }
}

/* ---------- 404 ---------- */
.nf { min-height: 100svh; display: grid; place-items: center; text-align: center; padding: 40px; }
.nf h1 { font-family: var(--serif); font-weight: 400; font-size: 3rem; margin-bottom: 12px; }
.nf p { color: rgba(244,237,227,.7); margin-bottom: 28px; }
