/* ==========================================================================
   AnnaBar Schwabach – Stylesheet
   Farben, Schriften und Abstände stehen als Variablen ganz oben.
   ========================================================================== */

/* ---------- Schriften (lokal gehostet, DSGVO-freundlich) ---------- */
@font-face { font-family: "Poppins"; font-weight: 300; font-display: swap; src: url("../fonts/poppins-latin-300-normal.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-weight: 400; font-display: swap; src: url("../fonts/poppins-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-weight: 500; font-display: swap; src: url("../fonts/poppins-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Raleway"; font-weight: 300; font-display: swap; src: url("../fonts/raleway-latin-300-normal.woff2") format("woff2"); }
@font-face { font-family: "Raleway"; font-weight: 400; font-display: swap; src: url("../fonts/raleway-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Raleway"; font-weight: 700; font-display: swap; src: url("../fonts/raleway-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family: "Bad Script"; font-weight: 400; font-display: swap; src: url("../fonts/bad-script-latin-400-normal.woff2") format("woff2"); }

/* ---------- Design-Variablen ---------- */
:root {
  --dunkel: #1f1302;        /* Grundfarbe, fast schwarzes Braun */
  --braun: #45341b;         /* Drinks-Bereich, Öffnungszeiten */
  --gold: #d7aa4e;          /* Akzent, Überschriften */
  --gold-hell: #e0bb6c;
  --gold-dunkel: #946e1f;   /* Hover, Cookie-/Hinweisflächen */
  --text: #e8e8e8;
  --text-dunkel: #1f1302;

  --schrift-titel: "Poppins", system-ui, sans-serif;
  --schrift-text: "Raleway", system-ui, sans-serif;
  --schrift-script: "Bad Script", cursive;

  --breite: 1048px;         /* Inhaltsbreite wie im Original */
  --rand: clamp(16px, 4vw, 32px);
  --header-h: 15vh;        /* wie im Original: wächst mit der Fensterhöhe */
  --radius: 10px;
}

/* ---------- Grundlagen ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--dunkel);
  color: var(--text);
  font: 300 16px/1.5 var(--schrift-text);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1.5em; }
p:last-child { margin-bottom: 0; }
strong, b { font-weight: 700; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--schrift-titel);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 3px;
  color: var(--gold);
}
h2 { font-size: clamp(22px, 2.6vw, 32px); }
h3 { font-size: clamp(20px, 2.2vw, 28px); }

.container { width: min(var(--breite), 100% - 2 * var(--rand)); margin-inline: auto; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--gold); color: var(--dunkel); padding: 10px 16px; border-radius: var(--radius);
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.icon { width: 1em; height: 1em; fill: currentColor; flex-shrink: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .75rem 1.5rem;
  background: var(--gold); color: var(--text-dunkel);
  border: 1px solid transparent; border-radius: 5px;
  font: 700 16px/1.5 var(--schrift-text); letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: background .25s, color .25s, border-color .25s;
}
.btn:hover { background: #c5932d; }
.btn--block { display: flex; width: 100%; }
.btn--outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn--outline:hover { background: var(--gold); color: var(--dunkel); }

/* ==========================================================================
   Kopfleiste
   ========================================================================== */
.header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: var(--header-h);
  background-color: rgba(31, 19, 2, .5);   /* wie im Original: halbtransparent */
  border-bottom: 1px solid var(--gold);
  transition: background-color .3s ease-in-out, box-shadow .3s ease-in-out;
}
/* Beim Scrollen abdunkeln (Klasse setzt main.js), Höhe bleibt gleich */
body.header-dunkel .header {
  background-color: var(--dunkel);          /* wie im Original: deckend + kurzer Schatten */
  box-shadow: 0 1px 5px 2px #000;
}
.header__inner {
  height: 100%;
  width: min(1080px, 100% - 2 * var(--rand));
  margin-inline: auto;
  display: flex; align-items: center; gap: 2rem;
}
.header__logo { flex-shrink: 0; }
.header__logo img { width: 214px; height: auto; transition: width .3s ease; }

.nav { margin-left: auto; }
.nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 2.5rem; }
.nav a {
  position: relative; display: block; padding: .6rem 0;
  font: 300 20px/1.5 var(--schrift-titel); letter-spacing: 2px; color: #bcbcbc;
  transition: color .25s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transition: transform .3s ease;
}
.nav a:hover { color: var(--gold); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 14px; }
.round-icon {
  display: grid; place-items: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold); color: var(--dunkel);
  transition: background .25s, transform .25s;
}
.round-icon { position: relative; }
.round-icon::after { content: ""; position: absolute; inset: -6px; }   /* Klickfläche 44 × 44 */
.round-icon:hover { background: var(--gold-hell); transform: scale(1.08); }
.round-icon .icon { width: 16px; height: 16px; }
.header__phone { display: none; place-items: center; width: 44px; height: 44px; color: #735934; }
.header__phone .icon { width: 26px; height: 26px; }

.burger {
  display: none; width: 44px; height: 44px; padding: 10px 6px;
  background: none; border: 0; cursor: pointer; color: #735934;
}
.burger span { display: block; height: 2px; background: currentColor; margin: 6px 0; transition: transform .3s, opacity .3s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: grid; place-items: center; text-align: center;
  padding: calc(var(--header-h) + 40px) var(--rand) 132px;
  overflow: hidden;
}
.bg-bild {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.bg-bild { object-position: center; }
/* Parallax (Steuerung in main.js über data-parallax) */
[data-parallax] { clip-path: inset(0); }   /* schneidet auch das „fixierte“ Bild sauber ab */
[data-parallax] > .bg-bild { bottom: auto; will-change: transform; }
.bg-bild--fixiert { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; }
.hero::before, .overlay::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(31, 19, 2, .65);  /* wie im Original */
}
.hero__inhalt { width: 100%; }
.hero__logo { width: min(1040px, 100%); height: auto; margin-inline: auto; }
.hero__adresse {
  margin: 1.2rem 0 0;
  font: 300 clamp(20px, 2.2vw, 28px)/1.5 var(--schrift-titel);
  letter-spacing: 3px; color: var(--gold);
}
.hero__scroll {
  position: absolute; left: 50%; bottom: 28px; translate: -50% 0;
  width: 64px; height: 44px; display: grid; place-items: center;
  color: var(--text); animation: hueft 2.2s ease-in-out infinite;
}
.hero__scroll:hover { color: var(--gold); }
.hero__scroll svg { width: 56px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1; }
.hero__scroll svg path { vector-effect: non-scaling-stroke; }
@keyframes hueft { 50% { transform: translateY(8px); } }

/* ==========================================================================
   Allgemeine Sektionen
   ========================================================================== */
.section { position: relative; isolation: isolate; overflow: hidden; }
.section__title { text-align: center; margin-bottom: 3.5rem; }

/* ---------- About ---------- */
.about { padding: 100px 0 80px; }
/* Goldlinien oben/unten als eigene Ebene ÜBER dem Hintergrundbild.
   (Ein echter border läge unter dem Bild – das Bild schimmerte dann ungedimmt am Rand durch.) */
.about::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.about.overlay::before { background: rgba(31, 19, 2, .953); }  /* wie im Original */
.about__text { font-size: 16px; }
.about__text hr, .about__trenner { border: 0; border-top: 1px solid var(--gold); margin: 2.25rem 0; }

.team { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 40px; }
.team__person { width: 200px; text-align: center; }
.team__bild {
  width: 150px; height: 150px; margin: 0 auto 15px;
  border-radius: 50%; object-fit: cover;
  border: 1px solid var(--gold);
}
.team__name { font: 300 24px/1.5 var(--schrift-titel); letter-spacing: 3px; color: var(--gold); margin: 0; }
.team__rolle { margin: 0; }

/* ---------- Bildstreifen ---------- */
.streifen { height: 30vh; }
.streifen.overlay::before { background: none; }   /* wie im Original: Bild ohne Abdunklung */

/* ---------- Drinks & Barfood ---------- */
.drinks { background: var(--braun); padding: 80px 0; }
.drinks .section__title { margin-bottom: 3rem; }
.karten { list-style: none; margin: 0 0 25px; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.karte {
  border: 1px solid var(--gold); border-radius: var(--radius);
  padding: 32px 24px; text-align: center;
  transition: transform .3s ease, background .3s ease;
}
.karte:hover { transform: translateY(-4px); background: rgba(31, 19, 2, .25); }
.karte__icon {
  width: 74px; height: 74px; margin: 0 auto 15px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--dunkel); border: 1px solid var(--gold-dunkel); color: var(--gold);
}
.karte__icon .icon { width: 38px; height: 38px; }
.karte__titel { font-size: clamp(20px, 2.2vw, 28px); line-height: 1.5; margin-bottom: 0; }
.karte__text { margin: 0; }

/* ---------- Events ---------- */
.events { display: grid; grid-template-columns: 312fr 816fr 312fr; min-height: 740px; }
.events__bild { position: relative; overflow: hidden; isolation: isolate; }
.events__bild img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.events__inhalt { background: var(--dunkel); padding: 50px 64px; display: flex; flex-direction: column; justify-content: center; }
.events__inhalt > h2 { margin-bottom: 1.25rem; }
/* immer höchstens 3 Kacheln nebeneinander, bei weniger Platz 2 bzw. 1 */
.event-liste { list-style: none; margin: 0 0 2.5rem; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.event {
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  border: 1px solid var(--gold); border-radius: var(--radius);
  padding: 28px 20px;
}
.event__titel { font: 400 30px/1.5 var(--schrift-script); letter-spacing: 0; color: var(--text); margin: 0; }
.event__untertitel { margin: 0 0 1.25rem; }
.event__wann { font: 300 32px/1.5 var(--schrift-titel); letter-spacing: 3px; color: var(--gold); margin: 0; }
.event__zeit { font: 300 20px/1.5 var(--schrift-titel); letter-spacing: 3px; color: var(--gold); margin: 0; }
.event__zeit p { margin: 0; }
.event__zeit a { transition: color .25s; }
.event__zeit a:hover { color: var(--gold-hell); text-decoration: underline; }
.dein-event h2 { margin-bottom: .1rem; }

/* ---------- Öffnungszeiten ---------- */
.zeiten { background: var(--braun); padding: 90px 0; }
.zeiten__uhr {
  position: absolute; left: 50%; top: 50%; translate: -50% -50%; z-index: -1;
  width: 150px; height: 150px; color: #5c4623; fill: currentColor;
}
.zeiten__liste { list-style: none; margin: 0; padding: 0; display: flex; justify-content: center; }
.tag { position: relative; padding: 0 1.2rem; text-align: center; min-width: 0; flex: 1 1 0; max-width: 150px; }
.tag + .tag { border-left: 1px solid var(--gold); }
.tag__name { display: block; font-weight: 700; font-size: 13px; text-transform: uppercase; }
.tag__zeit { display: block; font-size: 14.4px; }
.tag.is-heute .tag__name, .tag.is-heute .tag__zeit { color: var(--gold); }
.tag.is-heute::after {
  content: "heute"; position: absolute; left: 50%; top: 100%; translate: -50% 6px;
  padding: 0 8px; border-radius: 10px; background: var(--gold); color: var(--dunkel);
  font-size: 12px; font-weight: 700; line-height: 18px;
}

/* ---------- Kontakt ---------- */
.kontakt { background: var(--gold); color: var(--text-dunkel); }
.kontakt :focus-visible { outline-color: var(--dunkel); }   /* Gold auf Gold wäre unsichtbar */
.karte-map {
  position: relative; height: 325px;
  background-color: #2b1d08;
  background-image:
    linear-gradient(rgba(215, 170, 78, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 170, 78, .07) 1px, transparent 1px),
    linear-gradient(28deg, transparent 48%, rgba(215, 170, 78, .12) 48.5%, rgba(215, 170, 78, .12) 51%, transparent 51.5%),
    linear-gradient(-62deg, transparent 60%, rgba(215, 170, 78, .09) 60.5%, rgba(215, 170, 78, .09) 62%, transparent 62.5%);
  background-size: 40px 40px, 40px 40px, 100% 100%, 100% 100%;
  display: grid; place-items: center; text-align: center; color: var(--text);
}
.karte-map.overlay::before { background: rgba(31, 19, 2, .55); }
.karte-map__pin { width: 34px; height: 34px; margin: 0 auto 10px; color: var(--gold); }
.karte-map__hinweis { position: relative; max-width: 460px; padding: 0 var(--rand) 90px; font-size: 14px; }
.karte-map__hinweis p { margin-bottom: 1rem; }
.karte-map__hinweis a:not(.btn) { text-decoration: underline; }
.karte-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.kontakt__grid {
  display: grid; grid-template-columns: 1fr 510px 1fr; gap: 32px; align-items: start;
  padding-bottom: 84px;
}
.kontakt__info { text-align: center; padding-top: 80px; }
.kontakt__info .icon { width: 50px; height: 50px; margin: 0 auto 4px; }
.kontakt__info h3 { color: var(--text-dunkel); font-size: 28px; line-height: 1.3; }
.kontakt__info p { margin: 0; }
.kontakt__info a:hover { text-decoration: underline; }

.formular-box {
  position: relative; z-index: 2; margin-top: -80px;
  background: #fff; border: 3px solid var(--gold); border-radius: var(--radius);
  padding: 32px 32px 30px;
}
.formular-box h2 { text-align: center; margin-bottom: 1rem; }
.form { display: grid; gap: 16px; }
.form__feld { display: grid; gap: 4px; }
.form__feld label { font-size: 13px; color: #6a5a40; }
.form input, .form textarea {
  width: 100%; padding: 8px 16px;
  font: 300 16px/1.5 var(--schrift-text); color: var(--text-dunkel);
  background: #fff; border: 1px solid var(--dunkel); border-radius: 0;
}
.form textarea { min-height: 114px; resize: vertical; }
.form input:focus, .form textarea:focus { outline: 2px solid var(--gold); outline-offset: 0; border-color: var(--gold); }
.form input[aria-invalid="true"], .form textarea[aria-invalid="true"] { border-color: #bd2130; }
.form__check { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--gold-dunkel); }
.form__check input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--gold); flex-shrink: 0; }
.form__check a { text-decoration: underline; }
.form__hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form .btn { text-transform: none; font-weight: 300; letter-spacing: 0; padding: 8px 16px; }
.form .btn[disabled] { opacity: .6; cursor: wait; }
.form__status { margin: 0; padding: 10px 14px; border-radius: 5px; font-size: 15px; }
.form__status:empty { display: none; }
.form__status.is-ok { background: #e7f4ea; color: #1e6b32; }
.form__status.is-fehler { background: #fbe9eb; color: #8a1823; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--dunkel); padding: 80px 0 40px; }
.footer__top { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; padding-bottom: 32px; border-bottom: 1px solid var(--gold-dunkel); }
.footer__logo img { width: 220px; height: auto; }
.footer__nav { text-align: right; }
.footer__nav h2 { font-size: 28px; margin-bottom: .5rem; }
.footer__nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 16px; font-size: 16px; }
.footer__nav a { display: inline-block; padding-block: 6px; }
.footer__nav a:hover, .footer__bottom a:hover { color: var(--gold); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; padding-top: 24px; font-size: 16px; }
.footer__bottom p { margin: 0; }
.footer__rechtliches { margin-top: 1.2rem !important; }
.zahlarten { display: flex; gap: 12px; align-items: center; list-style: none; margin: 0; padding: 0; opacity: .45; }
.zahlarten li { display: grid; place-items: center; }
.zahlarten svg { height: 18px; width: auto; fill: var(--text); }

/* ---------- Nach-oben-Button ---------- */
.nach-oben {
  position: fixed; right: 32px; bottom: 32px; z-index: 90;
  width: 47px; height: 47px; display: grid; place-items: center;
  background: var(--gold-dunkel); color: var(--gold-hell);
  border: 1px solid var(--gold); border-radius: var(--radius);
  cursor: pointer; opacity: 0; visibility: hidden; translate: 0 12px;
  transition: opacity .3s, visibility .3s, translate .3s, background .25s, color .25s;
}
.nach-oben.is-sichtbar { opacity: 1; visibility: visible; translate: 0 0; }
.nach-oben:hover { background: var(--gold); color: var(--dunkel); }
.nach-oben svg { width: 20px; height: 20px; fill: currentColor; }

/* ---------- Einblend-Animationen (wie auf der bisherigen Seite) ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 1s ease, transform 1s ease; }
.reveal--fade { transform: none; }
.reveal--von-links { transform: translateX(-60px); }
.reveal--von-rechts { transform: translateX(60px); }
.reveal--von-oben { transform: translateY(-60px); }
.reveal--von-unten { transform: translateY(40px); }
.reveal.is-sichtbar { opacity: 1; transform: none; }

/* Startbild: Logo wird von links aufgedeckt, Adresse gleitet von unten herein */
.hero__logo { animation: aufdecken 1s ease-out both; }
.hero__adresse { animation: von-unten 1s ease-out .5s both; }
@keyframes aufdecken { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }
@keyframes von-unten { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: none; } }

/* ==========================================================================
   Unterseiten (Impressum, Datenschutz, Getränkekarte)
   ========================================================================== */
.seite { padding: calc(var(--header-h) + 70px) 0 90px; min-height: 70vh; }
.seite h1 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 2rem; }
.rechtstext > * { max-width: 860px; }   /* gleiche linke Kante wie die übrigen Seiten */
.rechtstext h2 { font-size: clamp(20px, 2.2vw, 26px); margin: 2.5rem 0 .75rem; }
.rechtstext h3 { font-size: 19px; margin: 1.75rem 0 .5rem; letter-spacing: 1px; }
.rechtstext a { color: var(--gold); text-decoration: underline; word-break: break-word; }
.rechtstext ul { padding-left: 1.2em; }
.zurueck { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); margin-bottom: 2rem; }
.zurueck:hover { text-decoration: underline; }

/* Getränkekarte (Desktop/Tablet): Titel, Buch und Leiste passen ohne Scrollen
   in den Bildschirm unter der Kopfleiste. Das Buch füllt die restliche Höhe. */
@media (min-width: 701px) {
  .seite--karte {
    display: flex; flex-direction: column;
    height: 100vh; height: 100svh;
    min-height: 540px;                    /* sehr flache Fenster: lieber scrollen als quetschen */
    padding: calc(var(--header-h) + 22px) 0 24px;
  }
  .seite--karte .container {
    flex: 1; min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto minmax(0, 1fr);
    grid-template-areas: "titel zurueck" "buch buch";
    align-items: baseline;
    column-gap: 24px;
  }
  .seite--karte h1 { grid-area: titel; margin: 0 0 12px; line-height: 1.25; }
  .seite--karte .zurueck { grid-area: zurueck; margin: 0; }
  .seite--karte .flipbook { grid-area: buch; align-self: stretch; min-height: 0; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1200px) {
  .nav ul { gap: 1.6rem; }
  .nav a { font-size: 18px; }
  .events { grid-template-columns: 1fr 2.6fr 1fr; }
  .events__inhalt { padding-inline: 40px; }
  .event-liste { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  .header__logo img { width: 170px; }
  .header__phone { display: grid; }
  .burger { display: block; }
  .header__actions { margin-left: auto; }
  .nav {
    position: fixed; inset: var(--header-h) 0 0; margin: 0;
    background: var(--dunkel); border-top: 1px solid var(--gold);
    display: grid; place-items: center;
    opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s, inset .3s;
  }
  .nav.is-offen { opacity: 1; visibility: visible; }
  .nav ul { flex-direction: column; align-items: center; gap: 1.2rem; }
  .nav a { font-size: 26px; }
  body.nav-offen { overflow: hidden; }

  .kontakt__grid { grid-template-columns: 1fr 1fr; }
  .formular-box { grid-column: 1 / -1; order: 2; margin-top: 40px; }
  .kontakt__info { padding-top: 40px; }
  .kontakt__info--adresse { order: 0; }
  .kontakt__info--kontakt { order: 1; }
  .karte-map__hinweis { padding-bottom: 0; }

  .events { grid-template-columns: 1fr; }
  .event-liste { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .events__bild { height: 280px; }
  .formular-box { order: 2; }
  .events__bild--rechts { display: none; }
}

@media (max-width: 800px) {
  .karten { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; margin-bottom: 25px; }
  .drinks .btn { max-width: 420px; margin-inline: auto; }
  .zeiten__liste { flex-direction: column; align-items: center; gap: 12px; }
  .tag { max-width: none; }
  .tag + .tag { border-left: 0; }
  .tag.is-heute::after { position: static; display: inline-block; translate: none; margin-top: 4px; }
  .zeiten__uhr { width: 150px; height: 150px; }
  .footer__top, .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__nav { text-align: left; }
  .footer__nav ul { justify-content: flex-start; }
}

@media (max-width: 600px) {
  .header__logo img { width: 225px; max-width: 52vw; }
  .header__inner { gap: .5rem; }
  .header__actions { gap: 4px; }
  .about { padding: 64px 0; }
  .events__bild { height: 170px; }
  /* Kontakt wie im Original: Adresse → Formular → Kontakt */
  .formular-box { order: 1; }
  .kontakt__info--kontakt { order: 2; }
  /* Schriftgrößen wie im Original (Handy) */
  .hero__adresse { font-size: 20px; line-height: 30px; }
  .team__name { font-size: 18px; line-height: 27px; }
  .karte__titel { font-size: 20px; line-height: 30px; }
  .event__titel { font-size: 30px; }
  .event__wann { font-size: 22px; line-height: 33px; }
  .event__zeit { font-size: 14px; line-height: 21px; }
  .kontakt__info h3 { font-size: 20px; line-height: 30px; }
  .footer__nav h2 { font-size: 20px; line-height: 30px; }
  .events__inhalt { padding: 48px var(--rand); }
  .event-liste { grid-template-columns: minmax(0, 1fr); }
  .kontakt__grid { grid-template-columns: 1fr; gap: 0; }
  .formular-box { padding: 24px 18px; }
  .nach-oben { right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
