/* ============================================================
   LODOS – BASE / LAYOUT
   Struktur & Layout sind hier. Farben, Fonts, Radien usw.
   kommen aus CSS-Variablen, die variants.css pro Design setzt.
   ============================================================ */

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

:root {
  /* Fallback-Tokens (werden von variants.css überschrieben) */
  --bg: #f5f1e8;
  --bg-alt: #ece5d6;
  --surface: #ffffff;
  --text: #17140f;
  --muted: #6b6459;
  --brand: #e4032e;
  --brand-2: #b8001f;
  --on-brand: #ffffff;
  --border: #e2d9c8;
  --radius: 12px;
  --shadow: 0 6px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 16px 50px rgba(0,0,0,.14);
  --font-display: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Helvetica Neue', Arial, system-ui, sans-serif;
  --title-transform: uppercase;
  --title-spacing: -0.01em;
  --title-weight: 800;
  --hero-min: 92vh;
  --sec-pad: 96px;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }
html, body { overscroll-behavior: none; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background .4s ease, color .4s ease;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { color: var(--muted); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ─── DESIGN-UMSCHALTER ─── */
.variant-switch {
  position: fixed;
  top: 14px; right: 14px;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 6px 5px 12px;
  background: rgba(20,18,15,.82);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0,0,0,.28);
}
.vs-label {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-right: 4px;
}
.vs-btn {
  width: 30px; height: 30px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.vs-btn:hover { background: rgba(255,255,255,.28); }
.vs-btn.active { background: var(--brand); color: var(--on-brand); transform: scale(1.08); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--btn-radius, 8px);
  background: transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--brand); color: var(--on-brand); }
.btn-primary:hover { background: var(--brand-2); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,.18); }
.btn-outline { border-color: currentColor; color: var(--text); }
.btn-outline:hover { background: var(--text); color: var(--bg); }

/* ─── NAVIGATION ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 120;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled { background: var(--header-bg, rgba(20,18,15,.94)); backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(0,0,0,.22); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; flex-direction: column; line-height: .95; }
.logo-word {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: var(--title-weight);
  letter-spacing: .02em;
  color: var(--nav-fg, #fff);
}
.logo-sub {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--brand);
  margin-top: 2px;
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: var(--nav-fg, rgba(255,255,255,.82));
  font-size: .9rem; font-weight: 600;
  padding: 8px 14px; border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover { color: var(--brand); }
.nav-cta { background: var(--brand) !important; color: var(--on-brand) !important; padding: 9px 20px !important; border-radius: 999px !important; margin-left: 8px; }
.nav-cta:hover { background: var(--brand-2) !important; color: #fff !important; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--nav-fg, #fff); border-radius: 2px; transition: all .3s; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: var(--hero-min);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--hero-bg, var(--bg));
  padding-top: 72px;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; width: 100%; }
.hero-eyebrow {
  color: var(--brand);
  font-size: .82rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: var(--title-weight);
  line-height: .95;
  letter-spacing: var(--title-spacing);
  text-transform: var(--title-transform);
  color: var(--hero-fg, var(--text));
  margin-bottom: 22px;
}
.hero-accent { color: var(--brand); }
.hero-sub { color: var(--hero-muted, var(--muted)); font-size: 1.08rem; max-width: 460px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-badge {
  font-size: .78rem; font-weight: 700;
  padding: 7px 14px; border-radius: 999px;
  background: var(--badge-bg, rgba(0,0,0,.06));
  color: var(--badge-fg, var(--text));
  border: 1px solid var(--badge-border, transparent);
}

.hero-visual { position: relative; }
.hero-img {
  width: 100%; aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--hero-img-radius, 20px);
  box-shadow: var(--shadow-lg);
}
.hero-price-tag {
  position: absolute; bottom: -18px; left: -18px;
  background: var(--brand); color: var(--on-brand);
  display: flex; flex-direction: column; align-items: center;
  padding: 14px 20px; border-radius: 16px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  box-shadow: var(--shadow-lg);
  line-height: 1.1;
}
.hero-price-tag strong { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0; margin-top: 3px; }

.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: var(--hero-muted, var(--muted)); opacity: .6; animation: bounce 2s ease-in-out infinite; }
@keyframes bounce { 0%,100%{ transform: translateX(-50%) translateY(0);} 50%{ transform: translateX(-50%) translateY(8px);} }

/* ─── SECTIONS ─── */
.section { padding: var(--sec-pad) 0; }
.section-alt { background: var(--bg-alt); }
.section-label {
  font-size: .78rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 12px;
}
.section-label.center, .section-title.center, .section-intro.center { text-align: center; }
.section-label.light { color: var(--on-brand); opacity: .85; }
.section-label.center { margin-left: auto; margin-right: auto; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: var(--title-weight);
  line-height: 1.02;
  letter-spacing: var(--title-spacing);
  text-transform: var(--title-transform);
  color: var(--text);
  margin-bottom: 18px;
}
.section-title.light { color: var(--on-brand); }
.section-intro { max-width: 620px; color: var(--muted); margin-bottom: 44px; font-size: 1.06rem; }
.section-intro.center { margin-left: auto; margin-right: auto; }

/* ─── TWO COL ─── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.col-text p { margin-bottom: 16px; }
.check-list { list-style: none; margin: 22px 0 30px; display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: center; gap: 12px; color: var(--text); font-weight: 600; font-size: .96rem; }
.check-list li::before {
  content: ''; width: 20px; height: 20px; flex-shrink: 0;
  background: var(--brand);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.story-photo { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.story-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.story-photo figcaption { background: var(--surface); color: var(--muted); font-size: .86rem; padding: 12px 16px; text-align: center; }

/* ─── HIGHLIGHTS ─── */
.highlights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 44px; }
.hl-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.hl-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.hl-icon {
  width: 58px; height: 58px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  background: var(--brand-soft, rgba(228,3,46,.1));
  margin-bottom: 18px;
}
.hl-card h3 { font-size: 1.08rem; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.hl-card p { font-size: .9rem; line-height: 1.6; }

/* ─── SPEISEKARTE ─── */
.menu-columns { columns: 2; column-gap: 56px; margin-top: 24px; }
.menu-cat { break-inside: avoid; margin-bottom: 40px; }
.menu-cat--wide { break-inside: avoid; }
.menu-cat-title {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: var(--title-weight);
  text-transform: uppercase; letter-spacing: .01em;
  color: var(--brand);
  padding-bottom: 10px; margin-bottom: 16px;
  border-bottom: 3px solid var(--menu-rule, var(--border));
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
}
.menu-cat-note { font-family: var(--font-body); font-size: .72rem; font-weight: 600; letter-spacing: 0; text-transform: none; color: var(--muted); }
.menu-item { margin-bottom: 14px; }
.mi-head { display: flex; align-items: baseline; gap: 8px; }
.mi-name { font-weight: 700; color: var(--text); font-size: 1rem; }
.mi-name em { font-style: normal; font-size: .7rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; margin-left: 4px; }
.mi-tag { background: var(--brand); color: var(--on-brand) !important; padding: 2px 8px; border-radius: 999px; letter-spacing: .04em !important; }
.mi-dots { flex: 1; border-bottom: 2px dotted var(--border); transform: translateY(-3px); min-width: 20px; }
.mi-price { font-family: var(--font-display); font-weight: var(--title-weight); color: var(--text); font-size: 1rem; }
.mi-price::after { content: ' €'; font-size: .7em; color: var(--muted); }
.mi-desc { font-size: .84rem; color: var(--muted); margin-top: 2px; line-height: 1.45; }
.menu-legal { text-align: center; font-size: .78rem; color: var(--muted); margin-top: 20px; }

/* ─── DEAL-BANNER ─── */
.banner { background: var(--banner-bg, var(--brand)); padding: 84px 0; text-align: center; }
.banner-content { max-width: 680px; margin: 0 auto; }
.banner-sub { color: var(--on-brand); opacity: .92; font-size: 1.1rem; margin: 0 auto 28px; max-width: 520px; }
.banner-sub strong { font-family: var(--font-display); font-size: 1.2em; }

/* ─── GALERIE ─── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.gallery-item { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--surface); }
.gallery-item img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 16px 12px; color: #fff; font-weight: 700; font-size: .92rem;
  background: linear-gradient(to top, rgba(15,12,9,.82), transparent);
}

/* ─── KONTAKT ─── */
.kontakt-grid { gap: 64px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 26px; margin: 30px 0 0; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item svg { color: var(--brand); flex-shrink: 0; margin-top: 3px; }
.contact-item strong { display: block; color: var(--text); font-size: .95rem; margin-bottom: 4px; }
.contact-item p, .contact-item a { color: var(--muted); font-size: .95rem; }
.contact-item a:hover { color: var(--brand); }
.ph-note { font-style: normal; font-size: .72rem; color: var(--brand); font-weight: 600; }
.hours-table { border-collapse: collapse; }
.hours-table td { padding: 3px 20px 3px 0; font-size: .9rem; color: var(--muted); }
.hours-table td:first-child { color: var(--text); font-weight: 600; }

.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.form-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: var(--title-weight); text-transform: var(--title-transform); margin-bottom: 6px; color: var(--text); }
.form-sub { color: var(--muted); font-size: .9rem; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; display: flex; flex-direction: column; }
.form-field label { font-size: .84rem; font-weight: 700; margin-bottom: 7px; color: var(--text); }
.form-field input, .form-field textarea {
  font-family: inherit; font-size: 1rem; padding: 12px 14px;
  border: 1px solid var(--border); border-radius: 8px;
  background: var(--input-bg, #fff); color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft, rgba(228,3,46,.15)); }
.form-field textarea { resize: vertical; min-height: 130px; }
.hp-field { display: none !important; }
.form-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
.form-status { font-size: .9rem; font-weight: 600; margin: 0; }
.form-status.success { color: #1d7a4d; }
.form-status.error { color: var(--brand); }
#cf-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-consent { margin-top: 16px; font-size: .78rem; line-height: 1.5; color: var(--muted); }

.kontakt-map { margin-top: 48px; position: relative; }
.map-embed { width: 100%; height: 360px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow-lg); display: block; filter: var(--map-filter, none); }
.map-link {
  position: absolute; left: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; background: var(--brand); color: var(--on-brand);
  font-size: .88rem; font-weight: 700; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  transition: background var(--transition), transform var(--transition);
}
.map-link:hover { background: var(--brand-2); transform: translateY(-2px); }
.map-link svg { color: currentColor; }

/* ─── FOOTER ─── */
.site-footer { background: var(--footer-bg, #17140f); padding: 46px 0; }
.footer-inner { text-align: center; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.footer-brand { display: flex; flex-direction: column; line-height: .95; align-items: center; }
.footer-brand .logo-word { color: #fff; }
.footer-addr { color: rgba(255,255,255,.6); font-size: .875rem; }
.footer-addr a { color: var(--brand); }
.footer-links { display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .875rem; transition: color var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-copy { color: rgba(255,255,255,.32); font-size: .8rem; }

/* ─── RECHTSSEITEN ─── */
.legal { padding: 120px 0 80px; }
.legal .container { max-width: 820px; }
.legal h1 { font-family: var(--font-display); font-size: clamp(2rem,4vw,2.8rem); text-transform: var(--title-transform); color: var(--text); margin-bottom: 8px; }
.legal .legal-sub { color: var(--muted); margin-bottom: 24px; }
.legal h2 { font-size: 1.2rem; color: var(--text); margin: 30px 0 8px; }
.legal p, .legal li { color: var(--text); font-size: .97rem; line-height: 1.75; }
.legal address { font-style: normal; line-height: 1.8; margin: 4px 0 8px; }
.legal a { color: var(--brand); }
.legal ul { margin: 8px 0 12px 22px; }
.legal .ph { background: #fff3b0; border-radius: 4px; padding: 0 6px; color: #6b5600; }
.legal-note { background: var(--brand-soft); border: 1px solid var(--brand); border-radius: var(--radius); padding: 14px 18px; margin-bottom: 26px; font-size: .9rem; color: var(--text); }
.legal-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 36px; }

/* ─── SCROLL-REVEAL ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --sec-pad: 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { order: -1; max-width: 400px; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .menu-columns { columns: 1; }
  .kontakt-grid { gap: 36px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .main-nav {
    display: none; position: fixed; inset: 72px 0 0;
    background: var(--nav-panel-bg, #17140f); flex-direction: column; align-items: stretch;
    padding: 22px; gap: 4px; overflow-y: auto;
  }
  .main-nav.open { display: flex; }
  .main-nav a { color: #fff; font-size: 1.1rem; padding: 14px 16px; }
  .nav-cta { text-align: center; margin-left: 0 !important; }
  .burger { display: flex; }
  .variant-switch { top: auto; bottom: 14px; right: 14px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .highlights-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}
