/* ─── DESIGN TOKENS ─── */
:root {
  --bg: #fbf7f0;
  --bg-warm: #f4ede1;
  --surface: #ffffff;
  --ink: #2b2420;
  --ink-soft: #6b5f54;
  --line: #e7ddcf;
  --accent: #a4612f;        /* warmes Karamell/Kupfer */
  --accent-dark: #80471f;
  --green: #6c7a4a;
  --shadow: 0 14px 40px rgba(60, 40, 20, 0.10);
  --radius: 16px;
  --maxw: 1140px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

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

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.12; letter-spacing: -0.01em; }

.eyebrow {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--accent); font-weight: 600; margin-bottom: 14px;
}

.section { padding: 96px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.section-lead { color: var(--ink-soft); margin-top: 14px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 28px; border-radius: 100px; font-weight: 600; font-size: 0.95rem;
  text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline { border-color: currentColor; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-block { width: 100%; }

/* ─── HEADER / NAV ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(251, 247, 240, 0.85); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 4px 20px rgba(60,40,20,.06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { text-decoration: none; }
.logo-word { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--ink); letter-spacing: .01em; }
.logo-accent { color: var(--accent); }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { text-decoration: none; color: var(--ink); font-size: 0.95rem; font-weight: 500; transition: color .15s; }
.main-nav a:hover { color: var(--accent); }
.nav-cta { background: var(--accent); color: #fff !important; padding: 9px 20px; border-radius: 100px; }
.nav-cta:hover { background: var(--accent-dark); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--ink); transition: .3s; }

/* ─── HERO ─── */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #2b2017 0%, #4a3422 55%, #714c28 100%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255,210,150,.18), transparent 45%),
                    radial-gradient(circle at 80% 70%, rgba(164,97,47,.35), transparent 50%);
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,14,8,.5), transparent 60%); }
.hero-content { position: relative; z-index: 2; color: #fff; padding-top: 72px; }
.hero-eyebrow { font-size: .82rem; text-transform: uppercase; letter-spacing: .22em; color: #e7c79b; font-weight: 600; margin-bottom: 18px; }
.hero-title { font-size: clamp(2.8rem, 7vw, 5.2rem); margin-bottom: 20px; }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 560px; color: #f0e6d8; font-weight: 300; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn-outline { color: #fff; }
.hero .btn-outline:hover { background: #fff; color: var(--ink); }
.hero-hours {
  position: absolute; bottom: 26px; right: 24px; z-index: 3;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px); color: #fff;
  border: 1px solid rgba(255,255,255,.2); border-radius: 100px;
  padding: 9px 18px; font-size: .85rem; font-weight: 500;
  display: flex; align-items: center; gap: 9px;
}
.hero-hours .dot { width: 8px; height: 8px; border-radius: 50%; background: #7fd18a; box-shadow: 0 0 0 3px rgba(127,209,138,.3); }

/* ─── ÜBER UNS ─── */
.about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); margin-bottom: 20px; }
.about-text p { color: var(--ink-soft); margin-bottom: 16px; }
.about-stats { display: flex; gap: 34px; margin-top: 30px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--accent); }
.stat-label { font-size: .82rem; color: var(--ink-soft); }
.about-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.about-card h3 { font-size: 1.5rem; margin-bottom: 18px; }
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.hours-list li span:first-child { color: var(--ink-soft); }
.hours-list li span:last-child { font-weight: 600; }
.hours-note { font-size: .85rem; color: var(--ink-soft); margin: 16px 0 22px; }

/* ─── SPEISEKARTE ─── */
.menu { background: linear-gradient(180deg, var(--bg) 0%, #f3ebdd 100%); }
.menu-updated { font-size: .85rem; color: var(--accent); font-weight: 500; }
.weekly {
  background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--accent);
  border-radius: var(--radius); padding: 30px 34px; margin-bottom: 50px; box-shadow: var(--shadow);
}
.weekly-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; flex-wrap: wrap; }
.weekly-head h3 { font-size: 1.7rem; }
.weekly-head .badge { background: var(--accent); color: #fff; font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; padding: 4px 11px; border-radius: 100px; font-family: var(--sans); font-weight: 600; }
.weekly-sub { color: var(--ink-soft); font-size: .92rem; margin-bottom: 18px; }
.menu-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 56px; }
.menu-cat-title { font-size: 1.6rem; padding-bottom: 8px; border-bottom: 2px solid var(--line); margin-bottom: 4px; }
.menu-cat-sub { font-size: .85rem; color: var(--accent); margin-bottom: 16px; }
.dish { display: flex; gap: 14px; padding: 13px 0; border-bottom: 1px dashed var(--line); }
.dish:last-child { border-bottom: none; }
.dish-main { flex: 1; }
.dish-name { font-weight: 600; font-size: 1.02rem; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.dish-desc { font-size: .88rem; color: var(--ink-soft); margin-top: 2px; }
.dish-price { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: var(--accent); white-space: nowrap; }
.tag { font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; padding: 2px 7px; border-radius: 100px; }
.tag-vegetarisch { background: #eef2e0; color: var(--green); }
.tag-vegan { background: #e2f0e4; color: #3f7a4a; }
.menu-legend { text-align: center; margin-top: 46px; font-size: .85rem; color: var(--ink-soft); display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.menu-loading { text-align: center; color: var(--ink-soft); grid-column: 1 / -1; }

/* ─── GALERIE ─── */
.gallery { background: var(--bg); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.gallery-item {
  border-radius: var(--radius); position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 18px; color: #fff; font-weight: 500; font-size: .9rem;
  background: linear-gradient(135deg, #6b4a2c, #a4612f);
}
.gallery-item span { position: relative; z-index: 2; text-shadow: 0 1px 6px rgba(0,0,0,.4); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.45), transparent 60%); }
.g1 { grid-column: span 2; grid-row: span 2; background: linear-gradient(135deg, #4a3422, #80471f); }
.g2 { background: linear-gradient(135deg, #8a5a2e, #b07636); }
.g3 { background: linear-gradient(135deg, #6c7a4a, #93a064); }
.g4 { background: linear-gradient(135deg, #7a4a2c, #a4612f); }
.g5 { grid-column: span 2; background: linear-gradient(135deg, #3a2a1c, #6b4a2c); }
.gallery-note { text-align: center; font-size: .82rem; color: var(--ink-soft); margin-top: 18px; }

/* ─── KONTAKT ─── */
.contact { background: linear-gradient(180deg, #f3ebdd 0%, var(--bg) 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-info h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 24px; }
.contact-list { list-style: none; margin-bottom: 14px; }
.contact-list li { padding: 12px 0; border-bottom: 1px solid var(--line); }
.contact-list strong { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-bottom: 3px; }
.contact-list a { color: var(--ink); text-decoration: none; }
.contact-note { font-size: .85rem; color: var(--ink-soft); margin-bottom: 22px; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); height: 220px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.map-placeholder { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #4a3422, #80471f); color: #f0e6d8; font-size: .9rem; font-weight: 500; }
.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.contact-form h3 { font-size: 1.5rem; margin-bottom: 22px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink-soft); }
.form-row input, .form-row textarea {
  width: 100%; margin-top: 6px; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: 10px; font-family: var(--sans); font-size: .95rem; background: var(--bg); color: var(--ink);
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--accent); }
.form-status { font-size: .88rem; margin-top: 12px; text-align: center; }
.form-status.ok { color: var(--green); }
.form-status.err { color: #c0492f; }

/* ─── FOOTER ─── */
.site-footer { background: #2b2017; color: #e7d8c4; padding: 50px 0 30px; text-align: center; }
.site-footer .logo-word { color: #fff; }
.footer-inner p { font-size: .9rem; margin: 12px 0; color: #c4b29c; }
.footer-nav { display: flex; gap: 22px; justify-content: center; margin: 16px 0; }
.footer-nav a { color: #e7d8c4; text-decoration: none; font-size: .88rem; }
.footer-nav a:hover { color: var(--accent); }
.footer-copy { font-size: .8rem; color: #94806c !important; }

/* ─── RESPONSIVE ─── */
@media (max-width: 880px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .menu-cats { grid-template-columns: 1fr; gap: 8px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g1, .g5 { grid-column: span 2; }
}
@media (max-width: 680px) {
  .section { padding: 70px 0; }
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    background: var(--bg); padding: 40px; gap: 26px;
    transform: translateX(100%); transition: transform .3s ease; box-shadow: var(--shadow);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 1.2rem; }
  .burger { display: flex; z-index: 110; }
  body.nav-open { overflow: hidden; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 170px; }
  .g1, .g5 { grid-column: span 1; grid-row: span 1; }
  .hero-hours { left: 24px; right: 24px; justify-content: center; }
}
