:root {
  --bordeaux: #7D2B36;
  --bordeaux-dark: #5A1E22;
  --ink: #201E1D;
  --text-secondary: #4A4746;
  --text-tertiary: #605D5D;
  --label-dim: #7D7979;
  --ground: #F3F2F2;
  --surface: #EAE9E9;
  --white: #FFFFFF;
  --font-display: 'EB Garamond', Garamond, serif;
  --font-body: 'Archivo', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--font-body);
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

a { color: var(--bordeaux); text-decoration: none; }
a:hover { color: var(--bordeaux-dark); }

*:focus-visible {
  outline: 2px solid var(--bordeaux);
  outline-offset: 2px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  margin: 0;
}

.kicker {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bordeaux);
}
.kicker-light { color: var(--white); }

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 24px;
  border: none;
  cursor: pointer;
  transition: background-color 120ms ease-out, color 120ms ease-out;
}

.btn-primary {
  background: var(--bordeaux);
  color: var(--white);
  padding: 11px 18px;
  font-size: 13px;
}
.btn-primary:hover { background: var(--bordeaux-dark); color: var(--white); }

.btn-outline {
  color: var(--ink);
  border: 2px solid var(--ink);
  background: transparent;
}
.btn-outline:hover { background: rgba(125,43,54,0.08); color: var(--ink); }

.btn-light {
  background: var(--white);
  color: var(--bordeaux);
}
.btn-light:hover { background: var(--surface); color: var(--bordeaux-dark); }

.btn-lg { padding: 15px 24px; }

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 2px solid var(--ink);
  flex-wrap: wrap;
}

.logo { display: flex; align-items: center; }
.logo img { display: block; height: 44px; width: auto; }

.nav { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.nav a:not(.btn) {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav a:not(.btn):hover { color: var(--bordeaux); }
.nav a.active:not(.btn) { color: var(--bordeaux); }

/* Hero (Startseite) */
.hero {
  padding: 72px 0;
  border-bottom: 2px solid var(--ink);
}

.hero-copy { display: flex; flex-direction: column; gap: 24px; max-width: 640px; }

.hero h1 {
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.hero .lead {
  margin: 0;
  max-width: 46ch;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

/* Page header (Unterseiten) */
.page-hero {
  padding: 56px 0 48px;
  border-bottom: 2px solid var(--ink);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-hero h1 { font-size: 48px; line-height: 1.05; max-width: 20ch; }
.page-hero .lead { margin: 0; max-width: 60ch; font-size: 17px; line-height: 1.6; color: var(--text-secondary); }

/* Photo feature (e.g. Gullwing-Interieur) */
.photo-feature {
  position: relative;
  border-bottom: 2px solid var(--ink);
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.photo-feature-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-wordmark {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: clamp(100px, 12vw, 160px);
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 1px 8px rgba(0,0,0,0.5));
}

/* Sections */
.section { padding: 64px 0; border-bottom: 2px solid var(--ink); }
.section:last-of-type { border-bottom: none; }

.section-head { display: flex; align-items: baseline; gap: 20px; flex-wrap: wrap; margin-bottom: 36px; }
.section h2 { font-size: 40px; line-height: 1; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.card {
  padding: 28px 24px 32px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bordeaux);
}

.card h3 { font-size: 25px; line-height: 1.15; }
.card p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--text-secondary); }
.card .card-link { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 6px; }

/* List (Catering-Leistungen, etc.) */
.list-plain {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}
.list-plain li {
  padding: 16px 20px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  font-size: 15px;
  color: var(--text-secondary);
}

/* Ueber uns / Philosophie */
.ueber-uns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 48px;
}
.ueber-uns h2 { font-size: 40px; line-height: 1; }

.ueber-uns-body { display: flex; flex-direction: column; gap: 28px; }

.leitsatz {
  margin: 0;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.4;
}

.philosophie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.philosophie-grid h3 { font-size: 22px; margin-bottom: 8px; }
.philosophie-grid p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--text-secondary); }

/* Poster */
.poster {
  background: var(--bordeaux);
  color: var(--white);
  padding: 72px 40px;
  margin: 64px auto;
  max-width: 1180px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.poster h2 {
  color: var(--white);
  font-size: 44px;
  line-height: 1.1;
  max-width: 24ch;
}

/* Kontakt */
.kontakt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}
.kontakt h2 { font-size: 40px; line-height: 1; margin-bottom: 36px; }

.kontakt .label,
.label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--label-dim);
  margin-bottom: 10px;
}
.kontakt p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--text-secondary); }
.kontakt a { font-size: 15px; color: var(--bordeaux); }

/* Platzhalter (Team, Wochenmenü) */
.placeholder-box {
  border: 2px dashed var(--label-dim);
  padding: 48px 32px;
  text-align: center;
  color: var(--text-tertiary);
  font-size: 15px;
  line-height: 1.6;
}

/* Legal (Impressum / Datenschutz) */
.legal { max-width: 72ch; display: flex; flex-direction: column; gap: 28px; }
.legal h2 { font-size: 32px; margin-bottom: 4px; }
.legal h3 { font-size: 20px; margin-bottom: 6px; }
.legal p, .legal li { font-size: 15px; line-height: 1.7; color: var(--text-secondary); margin: 0; }
.legal ul { padding-left: 20px; }
.legal-note {
  border-left: 4px solid var(--bordeaux);
  padding: 12px 20px;
  background: var(--surface);
  font-size: 14px;
  color: var(--ink);
}

/* Footer */
.site-footer {
  padding: 24px 0 48px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 12px;
  color: var(--text-tertiary);
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: var(--text-tertiary); }
.footer-links a:hover { color: var(--bordeaux); }

/* Responsive */
@media (max-width: 900px) {
  .ueber-uns { grid-template-columns: 1fr; }
  .hero h1 { font-size: 44px; }
  .page-hero h1 { font-size: 36px; }
  .poster h2 { font-size: 36px; }
  .site-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .hero h1 { font-size: 36px; }
  .poster { padding: 48px 24px; }
}
