:root {
  --red: #c62828;
  --red-hover: #b71c1c;
  --bg: #f9f7f4;
  --bg2: #f0ece6;
  --white: #ffffff;
  --dark: #1a1a1a;
  --mid: #555;
  --muted: #999;
  --border: #e0dbd3;
}

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

body {
  font-family: 'IBM Plex Sans', sans-serif;
  background: var(--bg);
  color: var(--dark);
  font-size: 15px;
  line-height: 1.6;
}

/* NAV */
.nav {
  background: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.5rem;
  height: 56px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem;
  color: #fff;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo span {
  color: var(--red);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 0.2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 3px;
  transition: all 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.nav-links a.active {
  color: var(--red);
}

/* HERO */
.hero {
  background: var(--dark);
  padding: 3.5rem 2.5rem 3rem;
  border-bottom: 3px solid var(--red);
}

.hero-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  color: #fff;
  line-height: 0.92;
  letter-spacing: 0.03em;
}

.hero-sub {
  margin-top: 1.3rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.hero-right {
  text-align: right;
  flex-shrink: 0;
}

.hero-phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 0.08em;
  text-decoration: none;
  display: block;
  transition: color 0.15s;
}

.hero-phone:hover { color: var(--red); }

.hero-phone-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.hero-loc {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

/* PAGE HEADER (non-home pages) */
.page-header {
  background: var(--dark);
  border-bottom: 3px solid var(--red);
  padding: 2rem 2.5rem;
}

.page-header-inner {
  max-width: 960px;
  margin: 0 auto;
}

.page-header-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.page-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  letter-spacing: 0.05em;
}

/* MAIN LAYOUT */
.main {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 2.5rem 4rem;
}

/* SECTION HEADER */
.sec-head {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 3rem 0 1.5rem;
}

.sec-head:first-child { margin-top: 0; }

.sec-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--dark);
  white-space: nowrap;
}

.sec-rule {
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* MENU TABS */
.menu-tabs {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.tab-btn {
  padding: 0.42rem 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--mid);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s;
  font-family: 'IBM Plex Sans', sans-serif;
  border-radius: 2px;
}

.tab-btn.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.tab-btn:hover:not(.active) {
  border-color: var(--dark);
  color: var(--dark);
}

/* MENU LIST */
.menu-grid {
  display: none;
  background: var(--white);
  border: 1px solid var(--border);
  margin-top: 0.75rem;
}

.menu-grid.active { display: block; }

.menu-row {
  display: flex;
  align-items: baseline;
  padding: 0.7rem 1.2rem;
  border-bottom: 1px solid var(--bg2);
  gap: 0.8rem;
  transition: background 0.1s;
}

.menu-row:last-child { border-bottom: none; }
.menu-row:hover { background: var(--bg); }

.menu-row--addon {
  background: var(--bg2);
  padding-left: 2.2rem;
}

.menu-row--addon .menu-name {
  color: var(--mid);
  font-size: 0.82rem;
}

.menu-row--addon .menu-price {
  font-size: 0.82rem;
  color: var(--mid);
  font-weight: 400;
}

.menu-nr {
  font-size: 0.68rem;
  color: var(--muted);
  min-width: 26px;
  font-weight: 400;
  flex-shrink: 0;
}

.menu-name {
  flex: 1;
  font-size: 0.88rem;
  color: var(--dark);
}

.menu-name small {
  display: inline;
  font-size: 0.75rem;
  color: var(--muted);
}

.menu-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--red);
  white-space: nowrap;
}

.menu-note {
  font-size: 0.75rem;
  color: var(--muted);
  padding: 0.6rem 1.2rem;
  border-top: 1px solid var(--bg2);
  background: var(--bg);
}

/* TWO COL */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* BOX */
.box {
  background: var(--white);
  border: 1px solid var(--border);
}

.box-head {
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid var(--border);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--dark);
  background: var(--bg2);
}

.box-body { padding: 0 1.2rem; }

/* HOURS */
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--bg2);
  font-size: 0.86rem;
}

.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 600; color: var(--dark); }
.hours-time { color: var(--mid); }
.hours-closed { color: var(--red); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.05em; }

/* CONTACT */
.contact-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--bg2);
  font-size: 0.86rem;
}

.contact-row:last-child { border-bottom: none; }

.c-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.c-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  width: 70px;
  flex-shrink: 0;
}

.c-val { color: var(--dark); font-weight: 400; }
.c-val a { color: var(--red); text-decoration: none; font-weight: 600; }
.c-val a:hover { text-decoration: underline; }

.map-btn {
  display: block;
  margin: 1rem 1.2rem 1.2rem;
  padding: 0.65rem 1rem;
  background: var(--dark);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.15s;
  border-radius: 2px;
}

.map-btn:hover { background: var(--red); }

/* TODAY BADGE */
.today-open {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-left: 0.5rem;
}

.today-closed {
  background: #ffebee;
  color: var(--red);
}

/* HOME QUICK LINKS */
.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 0;
}

.quick-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.5rem 1.4rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.quick-card:hover {
  border-color: var(--red);
  box-shadow: 0 2px 12px rgba(198,40,40,0.08);
}

.quick-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.quick-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.quick-card p {
  font-size: 0.82rem;
  color: var(--muted);
  flex: 1;
}

.quick-card-arrow {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--dark);
  text-transform: uppercase;
}

/* HIGHLIGHT STRIP */
.strip {
  background: var(--red);
  color: #fff;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0;
}

.strip-text {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.strip-phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.15s;
}

.strip-phone:hover { opacity: 0.8; }

/* IMPRESSUM */
.impressum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.imp-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}

.imp-block p {
  font-size: 0.84rem;
  color: var(--mid);
  line-height: 1.7;
}

.imp-block a { color: var(--red); text-decoration: none; }

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.35);
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 0.73rem;
  letter-spacing: 0.04em;
  margin-top: 0;
}

footer strong { color: rgba(255,255,255,0.7); }

@media (max-width: 680px) {
  .nav { padding: 0 1.2rem; }
  .nav-links { display: none; }
  .hero { padding: 2rem 1.5rem; }
  .hero-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .hero-right { text-align: left; }
  .main { padding: 2rem 1.5rem 3rem; }
  .two-col { grid-template-columns: 1fr; }
  .impressum-grid { grid-template-columns: 1fr; }
  .quick-grid { grid-template-columns: 1fr; }
  .strip { flex-direction: column; align-items: flex-start; }
  .page-header { padding: 1.5rem 1.5rem; }
}
