@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Work+Sans:wght@400;500;600&display=swap');

:root {
  --bg: #FAF6EC;
  --bg-alt: #F0E9D8;
  --wood: #3E2E22;
  --wood-light: #5A4433;
  --ink: #2A241C;
  --sage: #6B7A5E;
  --sage-dark: #4E5B44;
  --rust: #2F6B4C;
  --line: rgba(42, 36, 28, 0.18);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, sans-serif;
  --max-w: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Kopfbereich ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--wood);
  letter-spacing: 0.01em;
}

.brand span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--sage-dark);
  letter-spacing: 0.03em;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

nav.main-nav a:hover,
nav.main-nav a[aria-current="page"] {
  border-bottom-color: var(--rust);
  color: var(--wood);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 8px 10px;
  font-size: 1.1rem;
  color: var(--wood);
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-block; }
  nav.main-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 84px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
  }
  nav.main-nav.open { display: block; }
  nav.main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 10px 28px 22px;
  }
  nav.main-nav li { border-bottom: 1px solid var(--line); }
  nav.main-nav a { display: block; padding: 14px 0; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 88px 0 96px;
  background:
    repeating-linear-gradient(100deg, rgba(62,46,34,0.035) 0 2px, transparent 2px 34px),
    var(--bg-alt);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.hero-logo {
  width: 100%;
  max-width: 440px;
  height: auto;
  margin-bottom: 28px;
}

.hero-eyebrow-free h1 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.4vw, 3.6rem);
  line-height: 1.08;
  font-weight: 600;
  margin: 0 0 22px;
  color: var(--wood);
}

.hero p.lede {
  font-size: 1.15rem;
  max-width: 46ch;
  color: var(--ink);
  margin: 0 0 30px;
}

.hero-signature {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--sage-dark) !important;
  font-size: 1.1rem !important;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 13px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border-radius: 3px;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn-primary { background: var(--rust); color: #fff; }
.btn-primary:hover { background: #23533A; }
.btn-secondary {
  background: transparent;
  color: var(--wood);
  border: 1.5px solid var(--wood);
}
.btn-secondary:hover { background: var(--wood); color: #fff; }

.hero-photo {
  justify-self: stretch;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
}

@media (max-width: 760px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-photo { aspect-ratio: 16 / 10; }
}

/* ---------- Abschnitte ---------- */

section.block { padding: 72px 0; }
section.block.alt { background: var(--bg-alt); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 14px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin: 0;
  color: var(--wood);
}

.section-head .section-note {
  font-size: 0.95rem;
  color: var(--sage-dark);
  max-width: 32ch;
  text-align: right;
}

@media (max-width: 600px) {
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-head .section-note { text-align: left; }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 820px) {
  .grid-3 { grid-template-columns: 1fr; }
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: var(--wood);
  font-weight: 600;
}

.feature p { margin: 0; color: var(--ink); }

.feature-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--sage-dark);
  display: block;
  margin-bottom: 10px;
}

/* ---------- Speisekarte ---------- */

.menu-category { margin-bottom: 46px; }

.menu-category h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--wood);
  font-weight: 600;
  margin: 0 0 18px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px dotted var(--line);
}

.menu-item:last-child { border-bottom: none; }

.menu-item-text h4 {
  margin: 0 0 4px;
  font-size: 1.04rem;
  font-weight: 600;
}

.menu-item-text p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--sage-dark);
  max-width: 52ch;
}

.menu-item-price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--rust);
  white-space: nowrap;
  font-size: 1.05rem;
}

#menu-status {
  padding: 14px 18px;
  border-left: 3px solid var(--rust);
  background: var(--bg-alt);
  font-size: 0.95rem;
  margin-bottom: 30px;
  display: none;
}

#menu-status.visible { display: block; }

.menu-feature {
  margin: 0 0 40px;
}

.menu-feature img {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
}

.menu-feature figcaption {
  margin-top: 10px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--sage-dark);
  font-size: 0.95rem;
}

/* ---------- Tabellen (Öffnungszeiten) ---------- */

table.hours {
  width: 100%;
  border-collapse: collapse;
  max-width: 560px;
}

table.hours td {
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
}

table.hours td:first-child { font-weight: 600; color: var(--wood); width: 40%; }

table.hours tr.closed td:last-child { color: var(--sage-dark); font-style: italic; }

.note-box {
  margin-top: 28px;
  padding: 18px 22px;
  background: var(--bg-alt);
  border-left: 3px solid var(--sage);
  max-width: 560px;
  font-size: 0.95rem;
}

/* ---------- Veranstaltungen ---------- */

.event-list { display: flex; flex-direction: column; gap: 0; }

.event {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.event:first-child { padding-top: 0; }

.event-date {
  font-family: var(--font-display);
  color: var(--rust);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.3;
}

.event-body h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--wood);
}

.event-body p { margin: 0; }

@media (max-width: 600px) {
  .event { grid-template-columns: 1fr; gap: 6px; }
}

/* ---------- Anfahrt ---------- */

.anfahrt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

@media (max-width: 820px) {
  .anfahrt-grid { grid-template-columns: 1fr; }
}

.whatsapp-block {
  display: flex;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
}

.whatsapp-block > div { flex: 1 1 320px; }

.whatsapp-qr {
  width: 160px;
  height: 160px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px;
}

.map-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  filter: sepia(8%) saturate(88%);
}

dl.contact-list { margin: 0; }
dl.contact-list dt {
  font-weight: 600;
  color: var(--wood);
  margin-top: 18px;
  font-size: 0.85rem;
  text-transform: none;
}
dl.contact-list dt:first-child { margin-top: 0; }
dl.contact-list dd { margin: 4px 0 0; }

/* ---------- Über uns ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; }
}

.pull-quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--wood);
  border-left: 3px solid var(--rust);
  padding-left: 24px;
  margin: 36px 0;
  max-width: 46ch;
}

/* ---------- Impressum ---------- */

.legal h2 {
  font-family: var(--font-display);
  color: var(--wood);
  font-size: 1.3rem;
  margin: 34px 0 10px;
}
.legal h2:first-child { margin-top: 0; }
.legal p { margin: 0 0 8px; }

.placeholder-flag {
  display: inline-block;
  margin: 24px 0;
  padding: 14px 18px;
  background: #E9F1EB;
  border-left: 3px solid var(--rust);
  font-size: 0.92rem;
}

/* ---------- Footer ---------- */

footer.site-footer {
  background: var(--wood);
  color: #F0E9D8;
  padding: 52px 0 34px;
  margin-top: 40px;
}

footer.site-footer .wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
}

@media (max-width: 700px) {
  footer.site-footer .wrap { grid-template-columns: 1fr; gap: 26px; }
}

footer.site-footer h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 14px;
  color: #fff;
}

footer.site-footer a {
  color: #E4DBC6;
  text-decoration: none;
}
footer.site-footer a:hover { text-decoration: underline; }

footer.site-footer ul { list-style: none; margin: 0; padding: 0; }
footer.site-footer li { margin-bottom: 8px; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 34px auto 0;
  padding: 20px 28px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.85rem;
  color: #C9BEA3;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Fokus-Sichtbarkeit */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 2px;
}
