/* ============================================
   BABAS ANATOLISCHE KÜCHE — Unique Design
   Teal × Gold × Editorial
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Inter:wght@200;300;400;500;600&display=swap');

:root {
  --teal:        #0A2A2E;
  --teal-mid:    #0F3A3F;
  --teal-light:  #164A50;
  --teal-glow:   rgba(22,180,160,0.07);
  --gold:        #C8A84B;
  --gold-light:  #E0C46E;
  --gold-dim:    #7A6530;
  --cream:       #F4EDD8;
  --cream-muted: #A89B7A;
  --white:       #FAFAF8;
  --border:      rgba(200,168,75,0.15);
  --border-teal: rgba(22,180,160,0.12);
  --nav-h:       76px;
}

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

body {
  background: var(--teal);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.1;
  color: var(--cream);
  font-weight: 400;
}
.gold { color: var(--gold); }
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  margin-top: 0.3rem;
}
.divider {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.2rem 0 1.8rem;
}
.divider.center { margin: 1.2rem auto 1.8rem; }

/* ── NAV ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 3rem;
  transition: background 0.5s, border-color 0.5s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(10,42,46,0.97);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--cream);
  letter-spacing: 0.03em;
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px; width: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.nav-logo .logo-text-main { color: var(--gold); font-weight: 600; }
.nav-logo .logo-text-sub  { font-style: italic; font-weight: 300; color: var(--cream-muted); font-size: 1rem; }
.nav-links {
  display: flex; gap: 2.2rem;
  list-style: none; margin-left: auto; align-items: center;
}
.nav-links a {
  color: var(--cream); text-decoration: none;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links .btn-nav {
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold); padding: 0.5rem 1.4rem;
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  transition: all 0.3s; border-radius: 0;
}
.nav-links .btn-nav:hover { background: var(--gold); color: var(--teal); }
.nav-links .btn-nav::after { display: none; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; margin-left: auto;
  background: none; border: none; padding: 4px;
}
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--cream); transition: all 0.3s; }
.nav-mobile {
  display: none; position: fixed; inset: var(--nav-h) 0 0 0;
  background: rgba(10,42,46,0.99); backdrop-filter: blur(20px);
  z-index: 999; flex-direction: column; align-items: center;
  justify-content: center; gap: 2.8rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Cormorant Garamond', serif; font-size: 2.2rem;
  color: var(--cream); text-decoration: none; transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold); }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 0.9rem 2.5rem;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; border-radius: 0;
  transition: all 0.3s; cursor: pointer; border: none;
  font-family: 'Inter', sans-serif;
}
.btn-primary { background: var(--gold); color: var(--teal); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(200,168,75,0.2); }
.btn-outline { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--teal); transform: translateY(-2px); }

/* ══════════════════════════════════════════
   HERO — Split Editorial Layout
   ══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* LEFT PANEL — Text */
.hero-left {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 4rem) 4rem 4rem 5rem;
  position: relative; z-index: 1;
  background: var(--teal);
}
.hero-left::after {
  content: '';
  position: absolute; top: 0; right: -60px; bottom: 0;
  width: 120px;
  background: var(--teal);
  clip-path: polygon(0 0, 60% 0, 100% 100%, 0 100%);
  z-index: 2;
}
.hero-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(10rem, 18vw, 18rem);
  font-weight: 300;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,168,75,0.2);
  position: absolute;
  top: calc(var(--nav-h) - 1rem);
  left: 2rem;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.hero-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 2rem; position: relative; z-index: 1;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-size: 0.9rem; color: var(--cream-muted);
  font-weight: 300; margin-bottom: 3rem;
  max-width: 380px; line-height: 1.8;
  position: relative; z-index: 1;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 1; }

.hero-meta {
  margin-top: 4rem;
  display: flex; gap: 2.5rem;
  position: relative; z-index: 1;
}
.hero-meta-item {
  display: flex; flex-direction: column; gap: 0.2rem;
}
.hero-meta-label {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-dim);
}
.hero-meta-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; color: var(--cream);
}

/* RIGHT PANEL — Image */
.hero-right {
  position: relative; overflow: hidden;
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.85);
  transition: transform 8s ease;
}
.hero-right:hover img { transform: scale(1.03); }
.hero-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,42,46,0.4) 0%, transparent 60%);
}

/* Scrolling label on right edge */
.hero-scroll-label {
  position: absolute; bottom: 3rem; right: -2.5rem;
  writing-mode: vertical-rl;
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(200,168,75,0.5);
  display: flex; align-items: center; gap: 0.8rem;
  z-index: 10;
}
.hero-scroll-label::before {
  content: ''; display: block; width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ══════════════════════════════════════════
   INFO STRIP
   ══════════════════════════════════════════ */
.info-strip {
  background: var(--teal-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
}
.info-strip-inner {
  display: flex;
  max-width: 100%;
}
.info-strip-item {
  flex: 1;
  padding: 1.6rem 2rem;
  display: flex; align-items: center; gap: 1rem;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}
.info-strip-item:last-child { border-right: none; }
.info-strip-item:hover { background: var(--teal-light); }
.info-strip-icon { color: var(--gold); font-size: 1rem; width: 18px; flex-shrink: 0; }
.info-strip-text { font-size: 0.82rem; color: var(--cream-muted); }
.info-strip-text strong { display: block; color: var(--cream); font-weight: 400; font-size: 0.88rem; }

/* ══════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════ */
.section { padding: 7rem 2rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }

/* ══════════════════════════════════════════
   FEATURED — 3 cards with large numbers
   ══════════════════════════════════════════ */
.features-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--border);
}
.feature-card {
  padding: 3.5rem 2.5rem;
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: background 0.4s;
}
.feature-card:last-child { border-right: none; }
.feature-card:hover { background: var(--teal-mid); }
.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,168,75,0.25);
  line-height: 1;
  margin-bottom: 1rem;
  transition: -webkit-text-stroke-color 0.4s;
}
.feature-card:hover .feature-num { -webkit-text-stroke-color: rgba(200,168,75,0.5); }
.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400;
  color: var(--cream); margin-bottom: 0.8rem;
}
.feature-card p { font-size: 0.85rem; color: var(--cream-muted); line-height: 1.8; }
.feature-icon {
  position: absolute; top: 2rem; right: 2rem;
  font-size: 1.1rem; color: rgba(200,168,75,0.2);
}

/* ══════════════════════════════════════════
   ABOUT — Full-width editorial
   ══════════════════════════════════════════ */
.about-editorial {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 0;
  min-height: 80vh;
  border: 1px solid var(--border);
}
/* about-split: Text links, Bild rechts */
.about-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.about-text {
  /* Text bekommt Priorität */
}
.about-img {
  height: 420px;
  overflow: hidden;
  position: relative;
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 0.6s;
}
.about-img:hover img { transform: scale(1.03); }

@media (max-width: 768px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-img { height: 280px; order: -1; }
}

.about-img-col {
  position: relative; overflow: hidden;
}
.about-img-col img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.8);
  transition: transform 0.8s ease, filter 0.5s;
}
.about-editorial:hover .about-img-col img {
  transform: scale(1.02);
  filter: brightness(0.82) saturate(0.9);
}
.about-img-caption {
  position: absolute; bottom: 2rem; left: 2rem;
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(200,168,75,0.6);
}
.about-text-col {
  padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--teal-mid);
  border-left: 1px solid var(--border);
}
.about-text-col p {
  color: var(--cream-muted); font-size: 0.92rem;
  line-height: 1.9; margin-bottom: 1.4rem;
}
.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-style: italic; font-weight: 300;
  color: var(--gold); line-height: 1.5;
  margin: 2.5rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
}

/* ══════════════════════════════════════════
   MENU SHOWCASE — Magazine style
   ══════════════════════════════════════════ */
.menu-showcase { background: var(--teal-mid); }
.menu-showcase-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 3.5rem;
  flex-wrap: wrap; gap: 1.5rem;
}
.menu-cards {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--border);
}
.menu-card {
  background: var(--teal);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 200px;
}
.menu-card.featured { grid-row: span 2; min-height: 420px; }
.menu-card:hover { background: var(--teal-light); }
.menu-card-bg {
  position: absolute; inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 70% 70%, rgba(200,168,75,0.06), transparent 60%);
  transition: opacity 0.4s;
}
.menu-card:hover .menu-card-bg { opacity: 1; }
.menu-card-cat {
  font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
}
.menu-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--cream); margin-bottom: 0.4rem;
}
.menu-card.featured .menu-card-name { font-size: 2.2rem; }
.menu-card-desc { font-size: 0.8rem; color: var(--cream-muted); line-height: 1.65; }
.menu-card-arrow {
  position: absolute; top: 1.8rem; right: 1.8rem;
  color: var(--gold); font-size: 0.8rem; opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.menu-card:hover .menu-card-arrow { opacity: 1; transform: translate(2px, -2px); }

/* ══════════════════════════════════════════
   SPEISEKARTE PAGE
   ══════════════════════════════════════════ */
.page-hero {
  min-height: 44vh;
  display: flex; align-items: flex-end;
  padding: calc(var(--nav-h) + 3rem) 3rem 4rem;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,42,46,0.3) 0%, rgba(10,42,46,1) 100%);
  z-index: 1;
}
.page-hero img.bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: brightness(0.45) saturate(0.7); z-index: 0;
}
.page-hero-content { position: relative; z-index: 2; max-width: 1280px; width: 100%; margin: 0 auto; }

.menu-filter-bar {
  display: flex; gap: 0; flex-wrap: wrap; margin-bottom: 4rem;
  border: 1px solid var(--border);
  position: sticky; top: var(--nav-h); z-index: 10;
  background: var(--teal);
}
.menu-filter-btn {
  padding: 0.85rem 1.8rem;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  border: none; border-right: 1px solid var(--border);
  background: transparent; color: var(--cream-muted);
  cursor: pointer; transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.menu-filter-btn:last-child { border-right: none; }
.menu-filter-btn:hover { background: var(--teal-light); color: var(--cream); }
.menu-filter-btn.active { background: var(--gold); color: var(--teal); }

.menu-section-block { margin-bottom: 5rem; }
.menu-section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 300;
  color: var(--gold); margin-bottom: 0.4rem;
}
.menu-section-sub {
  font-size: 0.82rem; color: var(--cream-muted); max-width: 500px;
  margin-bottom: 2.5rem; line-height: 1.8;
}
.menu-sub-heading {
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold-dim); padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  margin: 2.5rem 0 1.2rem;
}
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.menu-entry {
  background: var(--teal);
  padding: 1.2rem 1.6rem;
  transition: background 0.25s;
  position: relative;
}
.menu-entry:hover { background: var(--teal-mid); }
.menu-entry-top { display: flex; align-items: baseline; gap: 0.7rem; margin-bottom: 0.2rem; }
.menu-entry-no { font-size: 0.64rem; color: var(--gold-dim); }
.menu-entry-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; color: var(--cream);
}
.menu-entry-desc { font-size: 0.78rem; color: var(--cream-muted); line-height: 1.6; }
.menu-entry-tags { display: flex; gap: 0.3rem; margin-top: 0.55rem; flex-wrap: wrap; }
.tag {
  font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.15rem 0.55rem; border-radius: 0;
}
.tag-lehm  { background: rgba(168,75,47,0.15); color: #D4806A; border: 1px solid rgba(168,75,47,0.25); }
.tag-grill { background: rgba(200,168,75,0.1);  color: var(--gold); border: 1px solid rgba(200,168,75,0.2); }
.tag-veg   { background: rgba(80,180,100,0.1);  color: #80C880;  border: 1px solid rgba(80,180,100,0.2); }
.tag-scharf{ background: rgba(220,60,40,0.12);  color: #D87060;  border: 1px solid rgba(220,60,40,0.2); }
.tag-pfanne{ background: rgba(80,140,200,0.1);  color: #80AAD0;  border: 1px solid rgba(80,140,200,0.2); }

/* ══════════════════════════════════════════
   SPEISEKARTE — Klassen für speisekarte.html
   ══════════════════════════════════════════ */

/* PDF Banner */
.pdf-banner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem 2rem; background: var(--teal-mid);
  border: 1px solid var(--border); margin-bottom: 2.5rem;
  flex-wrap: wrap; gap: 1.2rem;
}
.pdf-banner-text h3 { font-size: 1rem; font-weight: 400; color: var(--cream); margin-bottom: 0.15rem; }
.pdf-banner-text p  { font-size: 0.8rem; color: var(--cream-muted); }

/* Legende Badges */
.badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.68rem; letter-spacing: 0.06em;
  padding: 0.25rem 0.65rem; border-radius: 2px;
  font-family: 'Inter', sans-serif;
}
.badge-lehm  { background: rgba(168,75,47,0.15); color: #D4806A; border: 1px solid rgba(168,75,47,0.25); }
.badge-grill { background: rgba(200,168,75,0.1);  color: var(--gold); border: 1px solid rgba(200,168,75,0.2); }
.badge-veg   { background: rgba(80,180,100,0.1);  color: #80C880;  border: 1px solid rgba(80,180,100,0.2); }
.badge-scharf{ background: rgba(220,60,40,0.12);  color: #D87060;  border: 1px solid rgba(220,60,40,0.2); }
.badge-pfanne{ background: rgba(80,140,200,0.1);  color: #80AAD0;  border: 1px solid rgba(80,140,200,0.2); }

/* Kategorie-Filter */
.menu-categories {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--border); margin-bottom: 3rem;
  background: var(--teal-mid); overflow: hidden;
  position: sticky; top: var(--nav-h); z-index: 10;
}
.menu-cat-btn {
  flex: 1 1 auto; padding: 0.85rem 1.2rem;
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  border: none; border-right: 1px solid var(--border);
  background: transparent; color: var(--cream-muted);
  cursor: pointer; transition: all 0.2s;
  font-family: 'Inter', sans-serif; white-space: nowrap;
}
.menu-cat-btn:last-child { border-right: none; }
.menu-cat-btn:hover { background: var(--teal-light); color: var(--cream); }
.menu-cat-btn.active { background: var(--gold); color: var(--teal); font-weight: 600; }

/* Kategorieabschnitte */
.menu-section { margin-bottom: 5rem; }
.menu-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 300; color: var(--gold);
  margin-bottom: 0.4rem; padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.menu-section-desc {
  font-size: 0.82rem; color: var(--cream-muted);
  max-width: 560px; margin: 0.8rem 0 2rem; line-height: 1.8;
}
.menu-subsection-title {
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-dim); padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  margin: 2.5rem 0 0;
}

/* Gericht-Grid */
.menu-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: transparent;
  margin-top: 1.2rem;
  border: 1px solid var(--border);
}
.menu-item {
  background: var(--teal);
  padding: 1.1rem 1.4rem;
  transition: background 0.2s;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.menu-item:nth-child(even) { border-right: none; }
.menu-item:hover { background: var(--teal-mid); }
.menu-item-header {
  display: flex; align-items: baseline; gap: 0.6rem;
  margin-bottom: 0.25rem;
}
.menu-item-num {
  font-size: 0.62rem; color: var(--gold-dim);
  font-family: 'Inter', sans-serif; flex-shrink: 0;
  min-width: 1.8rem;
}
.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; color: var(--cream); font-weight: 500;
  line-height: 1.3;
}
.menu-item-desc {
  font-size: 0.78rem; color: var(--cream-muted);
  line-height: 1.6; margin: 0;
}
.menu-item-badges {
  display: flex; gap: 0.3rem; margin-top: 0.5rem; flex-wrap: wrap;
}

@media (max-width: 640px) {
  .menu-items { grid-template-columns: 1fr; }
  .menu-cat-btn { font-size: 0.6rem; padding: 0.7rem 0.8rem; }
}

/* ══════════════════════════════════════════
   RESERVIERUNG / KONTAKT — zusätzliche Klassen
   ══════════════════════════════════════════ */
.opening-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem; margin-top: 1rem;
}
.opening-card {
  background: var(--teal-mid); border: 1px solid var(--border);
  padding: 1rem 1.2rem; border-radius: 2px;
}
.opening-card.closed { opacity: 0.45; }
.opening-day {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-dim); margin-bottom: 0.3rem;
}
.opening-time { font-size: 0.9rem; color: var(--cream); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 4rem; align-items: start;
}
.contact-info-list { list-style: none; display: flex; flex-direction: column; gap: 1.4rem; margin-bottom: 2rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon {
  color: var(--gold); font-size: 0.9rem;
  width: 18px; flex-shrink: 0; margin-top: 3px;
}
.contact-info-text { display: flex; flex-direction: column; gap: 0.15rem; }
.contact-info-text strong { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-dim); }
.contact-info-text span, .contact-info-text a {
  font-size: 0.9rem; color: var(--cream); text-decoration: none; transition: color 0.2s;
}
.contact-info-text a:hover { color: var(--gold); }

.resmio-wrapper {
  background: var(--teal-mid); border: 1px solid var(--border);
  padding: 2.5rem;
}

.map-embed {
  width: 100%; height: 380px; overflow: hidden;
  border: 1px solid var(--border);
  filter: grayscale(0.3) brightness(0.75) saturate(0.6);
  transition: filter 0.4s;
}
.map-embed:hover { filter: grayscale(0) brightness(0.85) saturate(0.8); }
.map-embed iframe { width: 100%; height: 100%; border: none; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .opening-grid { grid-template-columns: repeat(2, 1fr); }
}

.pdf-strip {
  display: flex; align-items: center; justify-content: space-between;
  padding: 2rem 2.5rem; background: var(--teal-mid);
  border: 1px solid var(--border); margin-bottom: 4rem;
  flex-wrap: wrap; gap: 1.5rem;
}
.pdf-strip-text h3 { font-size: 1.1rem; font-weight: 400; margin-bottom: 0.2rem; }
.pdf-strip-text p  { font-size: 0.8rem; color: var(--cream-muted); }

/* ══════════════════════════════════════════
   RESERVIERUNG / KONTAKT
   ══════════════════════════════════════════ */
.two-col { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.info-block { list-style: none; display: flex; flex-direction: column; gap: 2rem; }
.info-row { display: flex; gap: 1.2rem; align-items: flex-start; }
.info-row-icon { color: var(--gold); font-size: 0.95rem; width: 18px; flex-shrink: 0; margin-top: 3px; }
.info-row-text label {
  display: block; font-size: 0.63rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-dim); margin-bottom: 0.25rem;
}
.info-row-text span, .info-row-text a {
  font-size: 0.9rem; color: var(--cream); text-decoration: none; transition: color 0.2s;
}
.info-row-text a:hover { color: var(--gold); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.hours-table tr { border-bottom: 1px solid var(--border-teal); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.7rem 0; font-size: 0.85rem; color: var(--cream-muted); }
.hours-table td:first-child { color: var(--cream); width: 100px; }
.hours-table tr.closed td { opacity: 0.4; }

.resmio-box {
  background: var(--teal-mid); border: 1px solid var(--border);
  padding: 2.5rem; min-height: 400px;
}

.map-box {
  width: 100%; height: 440px;
  background: var(--teal-mid); border: 1px solid var(--border);
  overflow: hidden; filter: grayscale(0.3) brightness(0.75) saturate(0.6);
  transition: filter 0.4s;
}
.map-box:hover { filter: grayscale(0) brightness(0.85) saturate(0.8); }
.map-box iframe { width: 100%; height: 100%; border: none; }

/* ══════════════════════════════════════════
   GALERIE
   ══════════════════════════════════════════ */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 3px;
}
.gal-item { overflow: hidden; position: relative; cursor: zoom-in; }
.gal-item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.gal-item:nth-child(2) { grid-column: span 5; }
.gal-item:nth-child(3) { grid-column: span 5; }
.gal-item:nth-child(4) { grid-column: span 4; }
.gal-item:nth-child(5) { grid-column: span 4; }
.gal-item:nth-child(6) { grid-column: span 4; }
.gal-item:nth-child(7) { grid-column: span 6; }
.gal-item:nth-child(8) { grid-column: span 6; }
.gal-item:nth-child(9) { grid-column: span 12; grid-row: span 1; }
.gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.8) saturate(0.75);
  transition: filter 0.5s, transform 0.6s;
}
.gal-item:hover img { filter: brightness(1) saturate(1); transform: scale(1.05); }
.gal-item-overlay {
  position: absolute; inset: 0; background: rgba(10,42,46,0);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.3rem;
  transition: background 0.3s;
}
.gal-item:hover .gal-item-overlay { background: rgba(10,42,46,0.28); }
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(5,20,22,0.96); z-index: 9999;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
.lb-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: var(--cream);
  font-size: 1.6rem; cursor: pointer; opacity: 0.6; transition: opacity 0.2s;
}
.lb-close:hover { opacity: 1; }

/* ══════════════════════════════════════════
   ÜBER UNS
   ══════════════════════════════════════════ */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.story-img { position: relative; }
.story-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: brightness(0.75) saturate(0.8); }
.story-img-frame {
  position: absolute; inset: 16px -16px -16px 16px;
  border: 1px solid rgba(200,168,75,0.18); z-index: -1;
}
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--border); margin-top: 3rem; }
.value-card { background: var(--teal); padding: 2.5rem 2rem; transition: background 0.3s; }
.value-card:hover { background: var(--teal-mid); }
.value-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--gold); margin-bottom: 0.5rem; }
.value-card p  { font-size: 0.83rem; color: var(--cream-muted); line-height: 1.8; }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
footer {
  background: #060F10;
  border-top: 1px solid var(--border);
  padding: 5rem 3rem 2.5rem;
}
.footer-inner,
.footer-grid { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem; margin-bottom: 4rem;
  padding-bottom: 4rem; border-bottom: 1px solid var(--border);
}
/* footer-grid layout used on inner pages */
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem; padding-bottom: 4rem; margin-bottom: 0;
  border-bottom: 1px solid var(--border);
}
.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: var(--gold); margin-bottom: 0.3rem;
}
.footer-brand p { font-size: 0.82rem; color: var(--cream-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.footer-address { font-size: 0.8rem; color: var(--cream-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.footer-address i { color: var(--gold-dim); margin-right: 0.4rem; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  color: var(--cream-muted); text-decoration: none;
  font-size: 0.85rem; transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4,
.footer-links h4 {
  font-family: 'Inter', sans-serif; font-size: 0.65rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-dim); margin-bottom: 1.5rem;
}
.footer-col ul,
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a,
.footer-links a { font-size: 0.82rem; color: var(--cream-muted); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover,
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p, .footer-bottom a { font-size: 0.75rem; color: rgba(200,168,75,0.3); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   FADE IN
   ══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 55vw; }
  .hero-left { padding: calc(var(--nav-h) + 2rem) 2.5rem 3rem; }
  .hero-left::after { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .about-editorial { grid-template-columns: 1fr; }
  .about-img-col { height: 50vw; }
  .menu-cards { grid-template-columns: 1fr 1fr; }
  .menu-card.featured { grid-column: span 2; grid-row: span 1; min-height: 240px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .menu-grid  { grid-template-columns: 1fr; }
  .gal-grid   { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gal-item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  #navbar { padding: 0 1.5rem; }
  .section { padding: 4.5rem 1.2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .menu-cards { grid-template-columns: 1fr; }
  .menu-card.featured { grid-column: span 1; }
  .info-strip-inner { flex-direction: column; }
  .info-strip-item { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-meta { flex-wrap: wrap; gap: 1.5rem; }
}
@media (max-width: 480px) {
  .gal-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.6rem; }
}
