:root {
  --ink: #2a211c;          /* Espresso */
  --ink-soft: #6a5d52;
  --bg: #f7f1e6;           /* Creme */
  --surface: #fffdf8;
  --line: #e7dcc9;
  --brand: #8c1d2b;        /* Bordeaux – bewusst kein Standard-Tailwind-Blau */
  --brand-deep: #6a121d;
  --accent: #5f6b34;       /* Olive */
  --gold: #b0842f;
  --shadow: 0 20px 44px -26px rgba(60, 20, 10, .5);
}
* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; line-height: 1.08; letter-spacing: -0.015em; font-weight: 600; }
a { color: var(--brand-deep); text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  background: rgba(247, 241, 230, .85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; font-family: "Fraunces", serif; font-weight: 600; font-size: 1.15rem; letter-spacing: .01em; }
.brand img { width: 36px; height: 36px; }
.nav a { margin-left: 22px; color: var(--ink-soft); font-size: .95rem; font-weight: 500; }
.nav a:hover { color: var(--brand-deep); }
.btn {
  display: inline-block; background: var(--brand); color: #fff;
  padding: 13px 26px; border-radius: 999px; font-weight: 600;
  box-shadow: var(--shadow); transition: transform .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--brand-deep); }
.btn-ghost { background: transparent; color: var(--brand-deep); box-shadow: none; border: 1.5px solid var(--brand); }

/* Hero */
.hero { display: grid; gap: 44px; grid-template-columns: 1.05fr .95fr; align-items: center; padding: 72px 0; }
.hero h1 { font-size: clamp(2.4rem, 5.2vw, 3.8rem); }
.hero p { margin: 18px 0 28px; color: var(--ink-soft); font-size: 1.14rem; max-width: 46ch; }
.hero-img { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.eyebrow { display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }

/* Sections */
section.band { padding: 76px 0; }
section.band.alt { background: var(--surface); border-block: 1px solid var(--line); }
.section-head { max-width: 60ch; margin-bottom: 40px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.section-head p { margin-top: 12px; color: var(--ink-soft); }

/* Karten / Highlights */
.grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 28px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: .98rem; }
.card .ico { font-size: 1.8rem; }

/* Speisekarte */
.menu-cat { margin-bottom: 44px; }
.menu-cat h3 { font-size: 1.5rem; color: var(--brand-deep); border-bottom: 2px solid var(--line); padding-bottom: 10px; margin-bottom: 8px; }
.menu-item { display: flex; align-items: baseline; gap: 14px; padding: 16px 0; border-bottom: 1px dashed var(--line); }
.menu-item .mi-main { flex: 1; }
.menu-item .mi-name { font-family: "Fraunces", serif; font-size: 1.15rem; font-weight: 600; }
.menu-item .mi-desc { color: var(--ink-soft); font-size: .95rem; }
.menu-item .mi-price { font-family: "Fraunces", serif; font-weight: 600; color: var(--brand); white-space: nowrap; font-size: 1.1rem; }

/* Öffnungszeiten */
.hours { display: grid; gap: 10px; max-width: 420px; }
.hours .row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); }
.hours .row span:first-child { color: var(--ink-soft); }
.hours .row span:last-child { font-weight: 600; }

/* Prose */
.prose p { margin-bottom: 14px; color: var(--ink-soft); }
.prose strong { color: var(--ink); }

/* Formular */
.form { display: grid; gap: 16px; max-width: 560px; }
.form .row2 { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.form label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; }
.form input, .form select, .form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; background: var(--surface); color: var(--ink);
}
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--brand); border-color: transparent; }
.hp { position: absolute; left: -9999px; }

/* Kontakt */
.contact-grid { display: grid; gap: 28px; grid-template-columns: 1fr 1fr; }
.contact-item { padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-item span { display: block; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 4px; }
.contact-item a, .contact-item p { font-size: 1.2rem; font-family: "Fraunces", serif; color: var(--ink); }

/* Footer */
.site-footer { padding: 44px 0; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .92rem; }
.site-footer a { color: var(--ink-soft); }

@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; padding: 48px 0; }
  .contact-grid, .form .row2 { grid-template-columns: 1fr; }
}
