/* „zur Brücke" Übach-Palenberg — gemütliche Kneipe: dunkles Grün, Bernstein,
   Serifen-Überschriften (System-Georgia, kein externer Font). */

:root {
  --accent: #e8a33d;
  --accent-dark: #c9882a;
  --ink: #f3efe6;
  --muted: #b6b0a2;
  --bg: #17241d;
  --bg-alt: #1e2f26;
  --line: rgb(243 239 230 / 0.12);
  --radius: 14px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Arial, system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: var(--bg); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: var(--accent); }

.container { max-width: 1040px; margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 740px; }

.demo-banner { background: var(--accent); color: #241a08; text-align: center; padding: 8px 16px; font-size: 13px; font-weight: 600; letter-spacing: 0.02em; }

.site-header { position: sticky; top: 0; background: rgb(23 36 29 / 0.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); z-index: 10; }
.nav { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.brand { font-family: var(--serif); font-weight: 700; font-size: 21px; color: var(--accent); }

.btn { display: inline-block; padding: 13px 22px; border-radius: 999px; text-decoration: none; font-weight: 600; font-size: 16px; transition: transform 120ms ease, background 120ms ease; border: 0; cursor: pointer; }
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--accent); color: #241a08; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-small { padding: 9px 16px; font-size: 14px; background: var(--accent); color: #241a08; }

/* Hero */
.hero { padding: 64px 0 72px; background: linear-gradient(180deg, var(--bg-alt), var(--bg)); }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 44px; align-items: center; }
@media (max-width: 820px) { .hero-grid { grid-template-columns: 1fr; } }
.kicker { color: var(--accent); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; font-size: 13px; margin-bottom: 12px; }
.hero h1 { font-family: var(--serif); font-size: clamp(32px, 4.6vw, 50px); line-height: 1.12; }
.hero .sub { margin-top: 16px; font-size: 18px; color: var(--muted); max-width: 50ch; }
.cta-row { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }
.rating-badge { margin-top: 20px; font-size: 15px; color: var(--muted); }
.hero-photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 22px 50px rgb(0 0 0 / 0.45); }
.hero-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* Sections */
.section { padding: 68px 0; }
.section.alt { background: var(--bg-alt); }
.section h2 { font-family: var(--serif); font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 26px; }
.section p + p { margin-top: 14px; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; }
.section.alt .card { background: var(--bg); }
.card h3 { font-family: var(--serif); font-size: 20px; margin-bottom: 8px; color: var(--accent); }
.card p { color: var(--muted); font-size: 15px; }

.info-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.info-pill { border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; font-size: 13.5px; color: var(--muted); }

/* Galerie */
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .gallery { grid-template-columns: 1fr; } }
.gallery img { border-radius: var(--radius); aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.gallery-note { margin-top: 12px; font-size: 13px; color: var(--muted); text-align: center; }

/* Kontakt */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info p { margin-bottom: 12px; }
.maps-link { font-weight: 600; text-decoration: none; }
.hours-note { color: var(--muted); font-size: 15px; }
.contact-cta { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.contact-cta p { margin-bottom: 16px; color: var(--muted); }

/* Mobiler Sticky-Call */
.sticky-call { display: none; }
@media (max-width: 640px) {
  .sticky-call { display: block; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 20;
    background: var(--accent); color: #241a08; text-align: center; padding: 15px; border-radius: 999px;
    font-weight: 700; text-decoration: none; box-shadow: 0 10px 30px rgb(0 0 0 / 0.5); }
  body { padding-bottom: 76px; }
}

.site-footer { border-top: 1px solid var(--line); padding: 24px 0; font-size: 14px; color: var(--muted); }
.footer-row { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.site-footer a { color: var(--muted); }
