/* ── RESET & VARS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red: #c0392b;
  --red-dark: #962d22;
  --black: #0a0a0a;
  --charcoal: #1c1c1c;
  --grey: #2e2e2e;
  --mid: #888;
  --light: #f0ede8;
  --white: #ffffff;
  --D: 'Bebas Neue', sans-serif;
  --B: 'Space Grotesk', sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: var(--B); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
address { font-style: normal; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
  transition: background .35s, padding .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(12px);
  padding: 14px 48px;
  border-bottom-color: rgba(255,255,255,.06);
}
.logo {
  font-family: var(--D); font-size: 2rem; letter-spacing: 6px;
  color: var(--white); flex-shrink: 0;
}
.nav-center { flex: 1; display: flex; justify-content: center; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-size: .75rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.6); font-weight: 500;
  transition: color .2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active { border-bottom: 1px solid var(--red); padding-bottom: 2px; }
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  background: var(--charcoal); border: 1px solid rgba(255,255,255,.08);
  list-style: none; min-width: 180px; padding: 8px 0;
  opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s;
  transform: translateX(-50%) translateY(-6px);
}
.has-dropdown:hover .dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: block; padding: 10px 20px;
  font-size: .78rem; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,.55); transition: color .2s, background .2s;
}
.dropdown li a:hover { color: var(--white); background: rgba(255,255,255,.05); }
.nav-right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.nav-support {
  font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.4); transition: color .2s;
}
.nav-support:hover, .nav-support.active { color: var(--white); }
.nav-reserve {
  background: var(--red); color: var(--white);
  padding: 10px 22px; font-size: .72rem; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; transition: background .2s;
}
.nav-reserve:hover { background: var(--red-dark); }
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.burger span { width: 22px; height: 2px; background: white; display: block; transition: all .3s; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; inset: 0; background: rgba(10,10,10,.98);
  z-index: 400; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin-bottom: 28px; }
.mobile-menu ul li a {
  font-family: var(--D); font-size: 2.5rem; letter-spacing: 4px;
  color: rgba(255,255,255,.6); transition: color .2s;
}
.mobile-menu ul li a:hover { color: var(--white); }
.mobile-reserve {
  background: var(--red) !important; color: var(--white) !important;
  padding: 12px 40px; font-size: 1.4rem !important;
}

/* ── PAGE HERO (shared) ── */
.page-hero {
  height: 50vh; min-height: 360px;
  background: var(--charcoal);
  display: flex; align-items: flex-end;
  padding: 60px 80px;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.35);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-tag {
  font-size: .7rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px; display: block; font-weight: 600;
}
.page-hero h1 {
  font-family: var(--D); font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: .9; letter-spacing: 2px; color: var(--white);
}
.page-hero h1 span { color: var(--red); }
.breadcrumb {
  position: absolute; bottom: 24px; right: 80px; z-index: 1;
  display: flex; gap: 8px; align-items: center;
  font-size: .72rem; color: rgba(255,255,255,.3); letter-spacing: 1px;
}
.breadcrumb a { color: rgba(255,255,255,.3); transition: color .2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--white); }

/* ── BUTTONS ── */
.btn-red {
  display: inline-block;
  background: var(--red); color: var(--white);
  padding: 14px 36px; font-size: .78rem; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600;
  transition: background .2s, transform .2s; border: none;
  cursor: pointer; font-family: var(--B);
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-outline-w {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.3); color: rgba(255,255,255,.7);
  padding: 14px 36px; font-size: .78rem; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 500;
  transition: border-color .2s, color .2s;
}
.btn-outline-w:hover { border-color: var(--white); color: var(--white); }
.btn-outline-b {
  display: inline-block;
  border: 1px solid rgba(0,0,0,.2); color: var(--black);
  padding: 14px 36px; font-size: .78rem; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 500;
  transition: background .2s, color .2s;
}
.btn-outline-b:hover { background: var(--black); color: var(--white); }

/* ── SECTION LABELS ── */
.sec-tag {
  font-size: .68rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--red); font-weight: 600; display: block; margin-bottom: 16px;
}
.sec-h {
  font-family: var(--D);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: .92; letter-spacing: 2px;
}
.sec-h span { color: var(--red); }
.sec-line { width: 48px; height: 3px; background: var(--red); margin-top: 24px; }
.sec-line.center { margin-left: auto; margin-right: auto; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s, transform .7s; }
.reveal.in { opacity: 1; transform: none; }
.reveal-l { opacity: 0; transform: translateX(-28px); transition: opacity .7s, transform .7s; }
.reveal-l.in { opacity: 1; transform: none; }
.reveal-r { opacity: 0; transform: translateX(28px); transition: opacity .7s, transform .7s; }
.reveal-r.in { opacity: 1; transform: none; }

/* ── CONTAINERS ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section { padding: 100px 0; }
.section-light { background: var(--light); color: var(--black); }
.section-charcoal { background: var(--charcoal); }
.section-black { background: var(--black); }

/* ─────────────────────────────
   HOME PAGE
───────────────────────────── */
.hero-split {
  height: 100vh; min-height: 600px;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--black);
}
.hero-left {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 80px 60px 80px 80px;
}
.hero-tag-home {
  font-size: .7rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--red); margin-bottom: 20px; font-weight: 600;
}
.hero-h1 {
  font-family: var(--D);
  font-size: clamp(5rem, 9vw, 9rem);
  line-height: .88; color: var(--white); letter-spacing: 2px;
}
.hero-h1 em { color: var(--red); font-style: normal; display: block; }
.hero-desc {
  margin-top: 28px; font-size: .95rem; line-height: 1.8;
  color: rgba(255,255,255,.5); max-width: 380px; font-weight: 300;
}
.hero-btns { margin-top: 44px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-right { position: relative; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.7); transition: transform 8s; }
.hero-right:hover img { transform: scale(1.04); }
.hero-right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 25%);
}
.hero-badge {
  position: absolute; bottom: 48px; right: 48px; z-index: 2;
  text-align: right;
}
.hero-badge strong {
  font-family: var(--D); font-size: 4.5rem; color: var(--white);
  line-height: 1; display: block;
}
.hero-badge span { font-size: .65rem; letter-spacing: 3px; color: rgba(255,255,255,.45); text-transform: uppercase; }

/* numbers band */
.numbers-band {
  background: var(--red);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.num-item {
  padding: 36px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.2);
}
.num-item:last-child { border-right: none; }
.num-big { font-family: var(--D); font-size: 3.5rem; color: var(--white); letter-spacing: 2px; display: block; }
.num-label { font-size: .68rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.65); margin-top: 4px; display: block; }

/* home about strip */
.home-about {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 70vh;
}
.home-about-img { position: relative; overflow: hidden; }
.home-about-img img { width: 100%; height: 100%; object-fit: cover; }
.home-about-badge {
  position: absolute; top: 40px; left: 40px;
  background: var(--red); padding: 16px 24px;
}
.home-about-badge span { font-family: var(--D); font-size: 1.3rem; color: var(--white); letter-spacing: 3px; }
.home-about-content {
  background: var(--light); padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center; color: var(--black);
}
.home-about-content p { font-size: .93rem; line-height: 1.9; color: #444; margin-bottom: 16px; max-width: 460px; }

/* home menu scroll */
.home-menu { background: var(--charcoal); padding: 80px 0; overflow: hidden; }
.home-menu-header { padding: 0 80px; margin-bottom: 48px; display: flex; align-items: flex-end; justify-content: space-between; }
.home-menu-header h2 { font-family: var(--D); font-size: clamp(3.5rem, 6vw, 6rem); color: var(--white); line-height: .9; }
.home-menu-header h2 span { color: var(--red); }
.home-menu-header a { color: rgba(255,255,255,.35); font-size: .75rem; letter-spacing: 2px; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,.15); padding-bottom: 4px; transition: color .2s; margin-bottom: 12px; white-space: nowrap; }
.home-menu-header a:hover { color: var(--white); }
.menu-cards { display: flex; gap: 3px; padding: 0 80px; overflow-x: auto; scrollbar-width: none; }
.menu-cards::-webkit-scrollbar { display: none; }
.menu-card { flex: 0 0 300px; position: relative; overflow: hidden; aspect-ratio: 2/3; }
.menu-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.55); transition: transform .5s, filter .5s; }
.menu-card:hover img { transform: scale(1.06); filter: brightness(.75); }
.menu-card-body { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; background: linear-gradient(to top, rgba(0,0,0,.9) 30%, transparent); }
.card-ghost-num { font-family: var(--D); font-size: 5rem; color: rgba(255,255,255,.06); position: absolute; top: 12px; left: 20px; line-height: 1; }
.card-badge-small { display: inline-block; background: var(--red); color: white; font-size: .6rem; letter-spacing: 2px; text-transform: uppercase; padding: 4px 10px; font-weight: 600; margin-bottom: 10px; width: fit-content; }
.card-name { font-family: var(--D); font-size: 1.8rem; color: var(--white); letter-spacing: 1px; }
.card-detail { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: 6px; line-height: 1.5; }
.card-price { font-size: 1.2rem; color: var(--red); font-weight: 700; margin-top: 12px; }

/* home testimonials */
.home-test { background: var(--black); padding: 100px 80px; }
.home-test-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; }
.home-test-header h2 { font-family: var(--D); font-size: clamp(2.5rem, 4vw, 4.5rem); color: var(--white); line-height: .92; }
.home-test-header h2 span { color: var(--red); }
.rating-box { text-align: right; }
.rating-score { font-family: var(--D); font-size: 3rem; color: var(--white); display: block; }
.rating-stars { color: var(--red); font-size: 1rem; letter-spacing: 2px; }
.rating-count { font-size: .7rem; color: var(--mid); letter-spacing: 1px; display: block; margin-top: 2px; }
.test-grid-home { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.test-card {
  background: var(--charcoal); padding: 44px 36px;
  border-left: 3px solid transparent; transition: border-color .3s;
}
.test-card:hover { border-left-color: var(--red); }
.test-quote { font-family: var(--D); font-size: 2.5rem; color: var(--red); margin-bottom: 12px; line-height: 1; }
.test-text { font-size: .88rem; line-height: 1.9; color: rgba(255,255,255,.55); font-style: italic; }
.test-author { margin-top: 28px; display: flex; align-items: center; gap: 14px; }
.author-init { width: 40px; height: 40px; background: var(--red); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .82rem; flex-shrink: 0; }
.author-n { font-size: .85rem; font-weight: 600; }
.author-src { font-size: .7rem; color: var(--mid); margin-top: 2px; }

/* home hours */
.home-hours {
  background: var(--charcoal);
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.hours-block { padding: 72px 60px; border-right: 1px solid rgba(255,255,255,.06); }
.hours-block:last-child { border-right: none; }
.hours-block h2 { font-family: var(--D); font-size: clamp(2.5rem, 3.5vw, 3.5rem); color: var(--white); margin-bottom: 32px; }
.hours-table { list-style: none; }
.hours-table li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: .85rem; }
.hours-table .day { color: rgba(255,255,255,.4); }
.hours-table .time { color: var(--white); font-weight: 600; }
.hours-table .closed { color: rgba(255,255,255,.2); }
.hours-phone { font-family: var(--D); font-size: 2.5rem; color: var(--white); letter-spacing: 2px; display: block; margin-bottom: 20px; }
.hours-phone:hover { color: var(--red); }

/* ─────────────────────────────
   ÜBER UNS
───────────────────────────── */
.about-story {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh;
}
.about-story-img { position: relative; overflow: hidden; min-height: 500px; }
.about-story-img img { width: 100%; height: 100%; object-fit: cover; }
.about-story-content { background: var(--light); color: var(--black); padding: 80px 72px; display: flex; flex-direction: column; justify-content: center; }
.about-story-content p { font-size: .92rem; line-height: 1.9; color: #444; margin-bottom: 16px; max-width: 460px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; background: var(--red); }
.about-stat { padding: 48px 32px; border-right: 1px solid rgba(255,255,255,.2); text-align: center; }
.about-stat:last-child { border-right: none; }
.about-stat strong { font-family: var(--D); font-size: 3.5rem; color: var(--white); display: block; }
.about-stat span { font-size: .68rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.65); }
.team-section { padding: 100px 80px; background: var(--charcoal); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin-top: 56px; }
.team-card { background: var(--black); overflow: hidden; }
.team-card-img { aspect-ratio: 3/4; overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.8) grayscale(.3); transition: filter .4s; }
.team-card:hover .team-card-img img { filter: brightness(.9) grayscale(0); }
.team-card-body { padding: 28px; }
.team-card-name { font-family: var(--D); font-size: 1.8rem; color: var(--white); letter-spacing: 1px; }
.team-card-role { font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-top: 4px; }
.team-card-bio { font-size: .83rem; color: rgba(255,255,255,.45); line-height: 1.7; margin-top: 14px; }
.values-section { padding: 100px 80px; background: var(--black); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; margin-top: 56px; }
.value-card { padding: 48px 36px; background: var(--charcoal); border-top: 3px solid transparent; transition: border-color .3s; }
.value-card:hover { border-top-color: var(--red); }
.value-num { font-family: var(--D); font-size: 4rem; color: rgba(255,255,255,.06); margin-bottom: 20px; }
.value-card h3 { font-family: var(--D); font-size: 1.6rem; color: var(--white); letter-spacing: 1px; margin-bottom: 14px; }
.value-card p { font-size: .83rem; color: rgba(255,255,255,.45); line-height: 1.8; }

/* ─────────────────────────────
   SPEISEKARTE
───────────────────────────── */
.menu-page { background: var(--black); }
.menu-tabs { position: sticky; top: 62px; z-index: 100; background: var(--charcoal); border-bottom: 1px solid rgba(255,255,255,.06); }
.menu-tabs ul { display: flex; list-style: none; padding: 0 80px; overflow-x: auto; scrollbar-width: none; }
.menu-tabs ul::-webkit-scrollbar { display: none; }
.menu-tabs ul li a {
  display: block; padding: 18px 28px; font-size: .75rem;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.4);
  border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; white-space: nowrap;
}
.menu-tabs ul li a:hover, .menu-tabs ul li a.active { color: var(--white); border-bottom-color: var(--red); }
.menu-section { padding: 80px; border-bottom: 1px solid rgba(255,255,255,.05); }
.menu-section h2 { font-family: var(--D); font-size: clamp(3rem, 5vw, 5rem); color: var(--white); margin-bottom: 48px; letter-spacing: 2px; }
.menu-section h2 span { color: var(--red); }
.menu-list { list-style: none; }
.menu-item {
  display: grid; grid-template-columns: 1fr auto;
  align-items: start; gap: 24px;
  padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name { font-family: var(--D); font-size: 1.5rem; color: var(--white); letter-spacing: 1px; }
.menu-item-badge { display: inline-block; background: var(--red); color: white; font-size: .58rem; letter-spacing: 2px; text-transform: uppercase; padding: 3px 8px; font-weight: 600; margin-left: 12px; vertical-align: middle; }
.menu-item-desc { font-size: .83rem; color: rgba(255,255,255,.4); margin-top: 6px; line-height: 1.6; }
.menu-item-meta { font-size: .72rem; color: rgba(255,255,255,.25); margin-top: 6px; letter-spacing: 1px; }
.menu-item-price { font-family: var(--D); font-size: 1.8rem; color: var(--red); white-space: nowrap; }
.menu-item-price small { font-family: var(--B); font-size: .7rem; color: rgba(255,255,255,.3); display: block; text-align: right; letter-spacing: 1px; }

/* ─────────────────────────────
   RESERVIERUNG
───────────────────────────── */
.res-page { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; padding-top: 62px; }
.res-page-left {
  background: var(--charcoal); padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden;
}
.res-page-left::before {
  content: 'TISCH'; font-family: var(--D); font-size: 16rem;
  color: rgba(255,255,255,.025); position: absolute; bottom: -30px; left: -20px;
  letter-spacing: 8px; line-height: 1; pointer-events: none;
}
.res-page-left h1 { font-family: var(--D); font-size: clamp(3rem, 5vw, 5.5rem); color: var(--white); letter-spacing: 3px; line-height: .9; margin-bottom: 24px; position: relative; z-index: 1; }
.res-page-left h1 span { color: var(--red); }
.res-page-left p { font-size: .9rem; color: rgba(255,255,255,.4); line-height: 1.8; max-width: 380px; position: relative; z-index: 1; }
.res-info-list { margin-top: 48px; display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
.res-info-row { display: flex; align-items: center; gap: 14px; }
.res-dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; flex-shrink: 0; }
.res-info-row span { font-size: .82rem; color: rgba(255,255,255,.45); }
.res-page-right { background: var(--black); padding: 80px 72px; display: flex; flex-direction: column; justify-content: center; }
.res-form { display: flex; flex-direction: column; gap: 20px; }
.res-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: .65rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.35); font-weight: 600; }
.field input, .field select, .field textarea {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  color: var(--white); padding: 14px 16px;
  font-family: var(--B); font-size: .9rem; outline: none;
  transition: border-color .2s; -webkit-appearance: none;
}
.field input::placeholder { color: rgba(255,255,255,.2); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); }
.field select option { background: var(--charcoal); }
.field textarea { resize: vertical; min-height: 90px; }
.res-submit {
  background: var(--red); color: var(--white); border: none;
  padding: 16px; font-family: var(--B); font-size: .8rem;
  letter-spacing: 3px; text-transform: uppercase; font-weight: 600;
  cursor: pointer; transition: background .2s; margin-top: 6px;
}
.res-submit:hover { background: var(--red-dark); }
.form-success {
  background: rgba(45,122,62,.15); border: 1px solid rgba(45,122,62,.4);
  color: #6ee09a; padding: 20px 24px; font-size: .88rem; line-height: 1.6;
  display: none;
}
.form-success.show { display: block; }

/* ─────────────────────────────
   GALERIE
───────────────────────────── */
.gallery-page { background: var(--black); padding: 0 0 100px; }
.gallery-filter { padding: 40px 80px 0; display: flex; gap: 16px; flex-wrap: wrap; }
.filter-btn {
  padding: 10px 24px; font-size: .72rem; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.4);
  background: none; cursor: pointer; transition: all .2s; font-family: var(--B);
}
.filter-btn:hover, .filter-btn.active { background: var(--red); border-color: var(--red); color: white; }

/* Spezial filter button — gold */
.filter-btn--spezial { border-color: #c9a84c; color: #c9a84c; }
.filter-btn--spezial:hover, .filter-btn--spezial.active { background: #c9a84c; border-color: #c9a84c; color: #0a0a0a; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; padding: 40px 80px 0; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 1; cursor: pointer; }

/* Spezial item — gold border glow */
.gallery-item--spezial { box-shadow: 0 0 0 2px #c9a84c; }
.gallery-item--spezial img { filter: brightness(.7) saturate(1.1); }
.gallery-item--spezial:hover img { filter: brightness(.95) saturate(1.2); }

/* Gold badge on spezial items */
.gallery-spezial-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: #c9a84c; color: #0a0a0a;
  font-size: .6rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px;
  font-family: 'Space Grotesk', sans-serif;
}
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.7); transition: filter .4s, transform .5s; }
.gallery-item:hover img { filter: brightness(1); transform: scale(1.04); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); display: flex; align-items: center; justify-content: center; transition: background .3s; }
.gallery-item:hover .gallery-overlay { background: rgba(192,57,43,.15); }
.gallery-zoom { color: white; font-size: 1.5rem; opacity: 0; transition: opacity .3s; }
.gallery-item:hover .gallery-zoom { opacity: 1; }

/* lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.95); z-index: 999; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 24px; right: 32px; color: white; font-size: 2rem; cursor: pointer; background: none; border: none; line-height: 1; }

/* ─────────────────────────────
   EVENTS
───────────────────────────── */
.events-page { background: var(--black); padding-bottom: 100px; }
.events-list { padding: 60px 80px 0; display: flex; flex-direction: column; gap: 3px; }
.event-card {
  display: grid; grid-template-columns: 160px 1fr auto;
  align-items: center; gap: 40px;
  background: var(--charcoal); padding: 40px 48px;
  border-left: 3px solid transparent; transition: border-color .3s;
}
.event-card:hover { border-left-color: var(--red); }
.event-date { text-align: center; }
.event-date .day { font-family: var(--D); font-size: 4rem; color: var(--white); line-height: 1; }
.event-date .month { font-size: .68rem; letter-spacing: 3px; text-transform: uppercase; color: var(--red); display: block; }
.event-date .year { font-size: .7rem; color: rgba(255,255,255,.3); display: block; }
.event-info h3 { font-family: var(--D); font-size: 1.8rem; color: var(--white); letter-spacing: 1px; margin-bottom: 8px; }
.event-info p { font-size: .83rem; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 600px; }
.event-tags { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.event-tag { font-size: .62rem; letter-spacing: 2px; text-transform: uppercase; padding: 4px 10px; border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.4); }
.event-price { font-family: var(--D); font-size: 1.6rem; color: var(--red); text-align: right; white-space: nowrap; }
.event-price small { font-family: var(--B); font-size: .7rem; color: rgba(255,255,255,.3); display: block; text-align: right; }
.event-price .btn-red { display: block; margin-top: 12px; text-align: center; font-size: .7rem; padding: 10px 20px; }

/* ─────────────────────────────
   BLOG
───────────────────────────── */
.blog-page { background: var(--black); padding-bottom: 100px; }
.blog-hero-featured { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; margin-bottom: 3px; }
.blog-featured-img { position: relative; overflow: hidden; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.6); transition: filter .4s; }
.blog-hero-featured:hover .blog-featured-img img { filter: brightness(.8); }
.blog-featured-content { background: var(--charcoal); padding: 60px 64px; display: flex; flex-direction: column; justify-content: flex-end; }
.blog-cat { font-size: .65rem; letter-spacing: 4px; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 16px; }
.blog-featured-content h2 { font-family: var(--D); font-size: clamp(2rem, 3.5vw, 3.5rem); color: var(--white); letter-spacing: 1px; line-height: 1; margin-bottom: 16px; }
.blog-featured-content p { font-size: .87rem; color: rgba(255,255,255,.45); line-height: 1.8; max-width: 440px; }
.blog-meta { font-size: .72rem; color: rgba(255,255,255,.25); margin-top: 24px; letter-spacing: 1px; }
.blog-read-more { display: inline-block; margin-top: 20px; font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--red); border-bottom: 1px solid var(--red); padding-bottom: 3px; transition: color .2s; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; padding: 0 0; }
.blog-card { background: var(--charcoal); overflow: hidden; }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.7); transition: filter .4s, transform .4s; }
.blog-card:hover .blog-card-img img { filter: brightness(.9); transform: scale(1.04); }
.blog-card-body { padding: 32px; }
.blog-card-body h3 { font-family: var(--D); font-size: 1.5rem; color: var(--white); letter-spacing: 1px; margin-bottom: 10px; line-height: 1.1; }
.blog-card-body p { font-size: .82rem; color: rgba(255,255,255,.4); line-height: 1.7; }
.blog-card-footer { padding: 20px 32px; border-top: 1px solid rgba(255,255,255,.06); display: flex; justify-content: space-between; align-items: center; }
.blog-card-footer .blog-cat { margin-bottom: 0; }
.blog-card-footer a { font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--red); border-bottom: 1px solid var(--red); padding-bottom: 2px; }

/* ─────────────────────────────
   KONTAKT
───────────────────────────── */
.contact-page { background: var(--black); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
.contact-info { background: var(--charcoal); padding: 80px 72px; display: flex; flex-direction: column; justify-content: center; }
.contact-info h2 { font-family: var(--D); font-size: clamp(3rem, 4.5vw, 4.5rem); color: var(--white); letter-spacing: 2px; line-height: .92; margin-bottom: 40px; }
.contact-info h2 span { color: var(--red); }
.contact-detail { margin-bottom: 32px; }
.contact-detail h4 { font-size: .68rem; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; font-weight: 600; }
.contact-detail p, .contact-detail a { font-size: .92rem; color: rgba(255,255,255,.6); line-height: 1.8; display: block; }
.contact-detail a:hover { color: var(--white); }
.contact-hours-table { list-style: none; }
.contact-hours-table li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: .85rem; }
.contact-hours-table .chday { color: rgba(255,255,255,.35); }
.contact-hours-table .chtime { color: var(--white); font-weight: 600; }
.contact-form-side { background: var(--black); padding: 80px 72px; display: flex; flex-direction: column; justify-content: center; }
.contact-form-side h3 { font-family: var(--D); font-size: 2rem; color: var(--white); letter-spacing: 2px; margin-bottom: 32px; }
.map-section { height: 400px; background: var(--charcoal); position: relative; overflow: hidden; }
.map-section iframe { width: 100%; height: 100%; border: none; filter: grayscale(1) invert(1) contrast(.8); }
.map-overlay { position: absolute; top: 0; left: 0; right: 0; padding: 20px 40px; background: linear-gradient(to bottom, rgba(10,10,10,.7), transparent); }
.map-address { font-size: .8rem; color: rgba(255,255,255,.6); letter-spacing: 1px; }

/* ─────────────────────────────
   SUPPORT
───────────────────────────── */
.support-page { background: var(--black); padding-bottom: 100px; }
.support-search-section { background: var(--charcoal); padding: 60px 80px; }
.support-search-wrap { max-width: 600px; margin: 0 auto; }
.support-search-wrap p { font-size: .88rem; color: rgba(255,255,255,.45); text-align: center; margin-bottom: 28px; }
.search-box { position: relative; }
.search-box input { width: 100%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: white; padding: 16px 56px 16px 20px; font-family: var(--B); font-size: .95rem; outline: none; }
.search-box input:focus { border-color: var(--red); }
.search-box input::placeholder { color: rgba(255,255,255,.25); }
.search-icon { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,.3); font-size: 1.1rem; pointer-events: none; }
.faq-section { padding: 60px 80px 0; }
.faq-category { margin-bottom: 48px; }
.faq-category h3 { font-family: var(--D); font-size: 1.6rem; color: var(--white); letter-spacing: 2px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.08); }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.06); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  gap: 20px; color: var(--white); font-family: var(--B); font-size: .92rem; font-weight: 500;
}
.faq-icon { color: var(--red); font-size: 1.4rem; flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s; }
.faq-answer-inner { padding: 0 0 20px; font-size: .87rem; color: rgba(255,255,255,.45); line-height: 1.9; }
.faq-item.open .faq-answer { max-height: 300px; }
.support-contact { padding: 60px 80px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.support-card { background: var(--charcoal); padding: 44px 40px; border-top: 3px solid transparent; transition: border-color .3s; }
.support-card:hover { border-top-color: var(--red); }
.support-card-icon { font-size: 2rem; color: var(--red); margin-bottom: 20px; }
.support-card h3 { font-family: var(--D); font-size: 1.5rem; color: var(--white); letter-spacing: 1px; margin-bottom: 12px; }
.support-card p { font-size: .83rem; color: rgba(255,255,255,.4); line-height: 1.7; margin-bottom: 20px; }
.support-card a { font-size: .78rem; color: var(--red); letter-spacing: 1px; border-bottom: 1px solid var(--red); padding-bottom: 2px; }

/* ─────────────────────────────
   FOOTER
───────────────────────────── */
footer { background: var(--charcoal); }
.footer-main {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px; padding: 80px 80px 60px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand .logo { font-size: 2rem; letter-spacing: 7px; display: block; margin-bottom: 20px; }
.footer-brand p { font-size: .82rem; color: rgba(255,255,255,.3); line-height: 1.9; max-width: 240px; }
.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.footer-socials a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); transition: all .2s;
}
.footer-socials a:hover { background: var(--red); border-color: var(--red); color: white; }
.footer-socials svg { width: 15px; height: 15px; }
.footer-col h4 { font-size: .62rem; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 20px; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.45); font-size: .82rem; transition: color .2s; }
.footer-col ul li a:hover { color: white; }
.footer-col address { font-size: .82rem; color: rgba(255,255,255,.4); line-height: 2; }
.footer-col address a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-col address a:hover { color: white; }
.footer-hours { margin-top: 16px; display: flex; flex-direction: column; gap: 4px; }
.footer-hours span { font-size: .75rem; color: rgba(255,255,255,.3); }
.footer-bottom {
  padding: 22px 80px; display: flex; justify-content: space-between;
  font-size: .72rem; color: rgba(255,255,255,.2);
}

/* ─────────────────────────────
   RESPONSIVE
───────────────────────────── */
@media (max-width: 1200px) {
  .footer-main { grid-template-columns: 1fr 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  nav { padding: 18px 32px; }
  nav.scrolled { padding: 12px 32px; }
  .nav-center { display: none; }
  .nav-right { display: none; }
  .burger { display: flex; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left {
    padding: 140px 48px 80px; justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,.9), rgba(0,0,0,.4)),
    url('https://images.unsplash.com/photo-1546833999-b9f581a1996d?w=1200&q=80') center/cover;
  }
  .numbers-band { grid-template-columns: repeat(2, 1fr); }
  .home-about { grid-template-columns: 1fr; }
  .home-about-img { min-height: 400px; }
  .home-about-content { padding: 60px 48px; }
  .home-menu-header, .menu-cards { padding-left: 32px; padding-right: 32px; }
  .home-test { padding: 80px 32px; }
  .home-hours { grid-template-columns: 1fr; }
  .hours-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .about-story { grid-template-columns: 1fr; }
  .about-story-img { min-height: 400px; }
  .about-story-content { padding: 60px 48px; }
  .team-section, .values-section { padding: 80px 32px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-section { padding: 60px 32px; }
  .menu-tabs ul { padding: 0 32px; }
  .res-page { grid-template-columns: 1fr; }
  .res-page-left { padding: 80px 48px; }
  .res-page-right { padding: 60px 48px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); padding: 40px 32px 0; }
  .gallery-filter { padding: 40px 32px 0; }
  .gallery-item.wide { grid-column: span 2; }
  .events-list { padding: 60px 32px 0; }
  .event-card { grid-template-columns: 120px 1fr; }
  .event-price { display: none; }
  .blog-hero-featured { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 300px; }
  .blog-featured-content { padding: 48px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info, .contact-form-side { padding: 60px 48px; }
  .support-search-section { padding: 60px 32px; }
  .faq-section { padding: 60px 32px 0; }
  .support-contact { padding: 60px 32px 0; grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; padding: 60px 48px 40px; gap: 40px; }
  .footer-bottom { padding: 20px 48px; }
  .page-hero { padding: 60px 48px; }
  .breadcrumb { right: 48px; }
}
@media (max-width: 640px) {
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .hero-left { padding: 120px 24px 60px; }
  .numbers-band { grid-template-columns: repeat(2, 1fr); }
  .home-about-content { padding: 48px 24px; }
  .home-test { padding: 60px 24px; }
  .home-test-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .test-grid-home { grid-template-columns: 1fr; }
  .hours-block { padding: 48px 24px; }
  .about-story-content { padding: 48px 24px; }
  .about-stats { grid-template-columns: 1fr; }
  .about-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-section, .values-section { padding: 60px 24px; }
  .menu-section { padding: 48px 24px; }
  .menu-tabs ul { padding: 0 24px; }
  .res-page-left, .res-page-right { padding: 60px 24px; }
  .res-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; padding: 32px 24px 0; }
  .gallery-filter { padding: 32px 24px 0; }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 1; }
  .events-list { padding: 40px 24px 0; }
  .event-card { grid-template-columns: 1fr; gap: 20px; padding: 32px 24px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-featured-content { padding: 40px 24px; }
  .contact-info, .contact-form-side { padding: 48px 24px; }
  .support-search-section { padding: 48px 24px; }
  .faq-section { padding: 48px 24px 0; }
  .support-contact { padding: 48px 24px 0; }
  .footer-main { grid-template-columns: 1fr; padding: 48px 24px 32px; gap: 32px; }
  .footer-bottom { padding: 16px 24px; flex-direction: column; gap: 6px; text-align: center; }
  .page-hero { padding: 60px 24px; }
  .breadcrumb { display: none; }
}
