/* ========================================
   Takumi Asia Fusion — Premium Stylesheet v3
   Warm Dark Theme + Copper Accents
   ======================================== */

/* ---------- Custom Properties ---------- */
:root {
  --bg-body: #1a1510;
  --bg-section: #211b16;
  --bg-card: #28221c;
  --bg-card-hover: #302923;
  --bg-nav: rgba(26, 21, 16, 0.97);
  --bg-nav-solid: rgba(26, 21, 16, 0.98);
  --accent-red: #c0392b;
  --accent-red-hover: #e74c3c;
  --accent-gold: #c8875b;
  --accent-gold-dim: #a06a3a;
  --accent-gold-glow: rgba(200, 135, 91, 0.10);
  --text-primary: #C8BAA8;
  --text-secondary: #968878;
  --text-muted: #6E6358;
  --border-color: rgba(255, 255, 255, 0.05);
  --border-gold: rgba(200, 135, 91, 0.22);
  --shadow: 0 4px 30px rgba(0, 0, 0, 0.50);
  --shadow-gold: 0 4px 20px rgba(200, 135, 91, 0.10);
  --radius: 2px;
  --radius-lg: 2px;
  --radius-xl: 2px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
  --nav-height: 80px;

  --bg-deeper: #120e0a;
  --nav-height-scrolled: 64px;
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  overflow-x: hidden;
  width: 100%;
}

html {
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: #daa070; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- Scroll Reveal — GSAP handles opacity/transform, no CSS fallback ---------- */

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  height: var(--nav-height);
  transition: all 0.5s ease;
}

.navbar.scrolled {
  background: var(--bg-nav-solid);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.50);
  border-bottom: 1px solid rgba(192, 57, 43, 0.40);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 112px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all var(--transition);
  position: relative;
  padding: 0.25rem 0;
}

.navbar.scrolled .nav-links a {
  color: var(--text-secondary);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--accent-gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-red);
  transition: all var(--transition);
  transform: translateX(-50%);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta { display: flex; gap: 0.75rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-gold);
  color: white;
  box-shadow: 0 4px 20px rgba(200, 135, 91, 0.30);
}

.btn-primary:hover {
  background: #daa070;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(200, 135, 91, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
}

.btn-outline:hover {
  background: var(--accent-gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 135, 91, 0.25);
}

.btn-glass {
  background: rgba(40, 34, 28, 0.90);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: #302923;
  color: var(--accent-gold);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
}

/* ---------- Sections ---------- */
section { padding: 6rem 0; }

.section-dark { background: #362c24; color: #D4C4B0; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #E8D8C4; }
.section-dark p { color: #BCA898; }
.section-alt { background: #3a3028; color: #D4C4B0; }
.section-alt h1, .section-alt h2, .section-alt h3 { color: #E8D8C4; }
.section-alt p { color: #BCA898; }

.section-warm {
  background: linear-gradient(180deg, #2e2620 0%, var(--bg-body) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 { margin-bottom: 1rem; }

.section-header .gold-line {
  width: 50px;
  height: 2px;
  background: var(--accent-red);
  margin: 1rem auto;
}

.section-header p {
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ---------- Hero ---------- */
/* (Old hero CSS removed — replaced by Hero v2 section below) */
.hero-content h1 {
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.6);
}

/* ---------- Image Strip / Marquee ---------- */
.image-strip {
  overflow: hidden;
  padding: 0;
  position: relative;
}

.image-strip::before,
.image-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.image-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-body) 0%, transparent 100%);
}

.image-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-body) 0%, transparent 100%);
}

.image-strip-track {
  display: flex;
  gap: 1rem;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.image-strip-track img {
  height: 280px;
  width: auto;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.5s ease;
}

.image-strip-track img:hover {
  transform: scale(1.05);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Showcase Grid (big food photos) ---------- */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.showcase-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item:hover img {
  transform: scale(1.06);
}

.showcase-item .label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.5s ease;
}

.showcase-item:hover .label {
  transform: translateY(0);
  opacity: 1;
}

.showcase-item .label h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.showcase-item .label p { color: var(--text-secondary); font-size: 1rem; }

.showcase-item.tall { grid-row: span 2; }
.showcase-item.wide { grid-column: span 2; }

.showcase-item.tall img,
.showcase-item:not(.tall) img {
  height: 100%;
  min-height: 250px;
}

/* ---------- Food Cards (smaller, for teaser) ---------- */
.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.food-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.food-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.food-card:hover img { transform: scale(1.08); }

.food-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.food-card .overlay h3 { font-size: 1.15rem; color: white; }
.food-card .overlay p { font-size: 1rem; color: var(--text-secondary); margin-top: 0.25rem; }

/* ---------- Homepage Gallery Preview ---------- */
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 250px 250px;
  gap: 1rem;
}

.gallery-preview .gp-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-preview .gp-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-preview .gp-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.gallery-preview .gp-item.span-2 { grid-column: span 2; }
.gallery-preview .gp-item.span-row { grid-row: span 2; }

.gallery-preview .gp-item .gp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(176, 115, 64, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-preview .gp-item:hover .gp-overlay { opacity: 1; }

.gp-overlay span {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ---------- Opening Hours CTA ---------- */
.hours-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hours-card {
  background: #2e261e;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 3rem;
}

.hours-card h2 { margin-bottom: 2rem; }

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 1rem;
}

.hours-row:last-child { border-bottom: none; }
.hours-row .day,
.hours-row .hours-day { font-weight: 600; color: var(--text-primary); }
.hours-row .time,
.hours-row .hours-time { color: var(--text-secondary); }
.hours-row.closed .time,
.hours-row.closed .hours-time { color: var(--accent-red); font-weight: 600; }
.hours-note { font-size: 1rem; color: var(--text-muted); margin-top: 0.75rem; }

.hours-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}

.hours-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Highlight / Stats bar ---------- */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 2rem 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}

.review-card:hover {
  border-color: rgba(192, 57, 43, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(192, 57, 43, 0.08);
}

.review-stars { color: var(--accent-gold); font-size: 1rem; margin-bottom: 0.75rem; }
.review-text { color: var(--text-secondary); font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; font-style: italic; }
.review-author { font-weight: 600; font-size: 1rem; }
.review-source { font-size: 1rem; color: var(--text-muted); }

/* ---------- Footer ---------- */
.footer {
  background: #1e1914;
  border-top: 2px solid rgba(192, 57, 43, 0.35);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
}

.footer-col p, .footer-col a, .footer-col li {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 2;
}

.footer-col a:hover { color: var(--accent-gold); }

.footer-col .contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.footer-col .contact-item i {
  color: var(--accent-gold);
  width: 18px;
  text-align: center;
  font-size: 1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  font-size: 1rem;
  color: var(--text-muted);
}

.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--accent-gold); }

/* ---------- Page Header (inner pages) ---------- */
.page-header {
  padding: calc(var(--nav-height) + 4rem) 0 3rem;
  text-align: center;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 10%, var(--accent-red) 50%, transparent 90%);
  opacity: 0.7;
}

.page-header h1 { margin-bottom: 0.5rem; color: var(--text-primary); }
.page-header p { color: var(--text-secondary); }
.page-header .page-label { color: var(--text-muted); }

.page-header .gold-line {
  width: 50px;
  height: 2px;
  background: var(--accent-red);
  margin: 0.75rem auto;
}

.page-header p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* ---------- Speisekarte (Menu) ---------- */
.menu-pdf-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.menu-pdf-preview img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.menu-pdf-preview img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow);
}

.menu-nav {
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
  background: var(--bg-body);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.20);
}

.menu-nav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  justify-content: center;
}

.menu-nav a {
  padding: 0.45rem 0.9rem;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  border: 1px solid var(--border-color);
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-nav a i { margin-right: 0.25rem; }

.menu-nav a:hover,
.menu-nav a.active {
  color: #fff;
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  border-radius: 0;
}

.menu-category { padding: 3rem 0 1rem; }

.menu-category-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(192, 57, 43, 0.40);
}

.menu-category-header i { font-size: 1.3rem; color: var(--accent-gold); }
.menu-category-header h2 { font-size: 1.4rem; }

.menu-category-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.menu-items { display: grid; gap: 0.35rem; }

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  transition: all var(--transition);
  gap: 1rem;
  border: 1px solid transparent;
}

.menu-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-color);
}

.menu-item-info { flex: 1; }

.menu-item-number {
  display: inline-block;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 1rem;
  margin-right: 0.5rem;
  min-width: 2rem;
}

.menu-item-name { font-weight: 600; font-size: 1rem; }

.menu-item-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-top: 0.25rem;
  line-height: 1.7;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  vertical-align: middle;
  margin-left: 0.15rem;
}

.badge-vegan { background: rgba(39,174,96,0.18); color: #2ecc71; border: 1px solid rgba(39,174,96,0.30); }
.badge-veggie { background: rgba(46,204,113,0.18); color: #55efc4; border: 1px solid rgba(46,204,113,0.30); }
.badge-spicy { background: rgba(231,76,60,0.18); color: #ff6b6b; border: 1px solid rgba(231,76,60,0.30); }
.badge-new { background: var(--accent-gold-glow); color: var(--accent-gold); border: 1px solid var(--border-gold); }

.menu-item-price { font-weight: 700; font-size: 1rem; color: var(--accent-gold); white-space: nowrap; }

.menu-item-options { margin-top: 0.5rem; padding-left: 2.5rem; }

.menu-option {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0;
  font-size: 1rem;
  color: var(--text-secondary);
}

.menu-option-name { font-weight: 500; }
.menu-option-price { color: var(--accent-gold); font-weight: 600; }

.allergen-section {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.allergen-section h3 { margin-bottom: 1rem; color: var(--accent-gold); font-size: 1.05rem; }

.allergen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.4rem;
}

.allergen-item { font-size: 1rem; color: var(--text-secondary); }
.allergen-item strong { color: var(--text-primary); margin-right: 0.25rem; }

/* ---------- Gallery ---------- */
.gallery-grid {
  columns: 3;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(176, 115, 64, 0.08);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.97);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  animation: lightboxIn 0.3s ease;
}

@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  z-index: 10000;
  transition: all var(--transition);
}

.lightbox-close:hover { color: var(--accent-gold); transform: rotate(90deg); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  background: rgba(255,255,255,0.05);
  border: none;
  padding: 1rem;
  border-radius: 50%;
  transition: all var(--transition);
}

.lightbox-nav:hover { color: var(--accent-gold); background: rgba(255,255,255,0.1); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ---------- About page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s ease;
}

.about-image:hover img { transform: scale(1.04); }

.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.85; }

.quote-block {
  background: var(--bg-card);
  border-left: 3px solid var(--accent-red);
  border-radius: 0;
  padding: 2rem;
  margin: 2rem 0;
}

.quote-block p { font-style: italic; font-size: 1.05rem; color: var(--text-secondary); line-height: 1.85; }
.quote-block cite { display: block; margin-top: 1rem; color: var(--accent-gold); font-style: normal; font-weight: 600; }

/* About page blockquote (inline) */
.about-text blockquote {
  position: relative;
  background: var(--bg-section);
  border-left: 3px solid var(--accent-red);
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
}

.about-text blockquote::before {
  content: '\201C';
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 4rem;
  color: var(--accent-gold);
  opacity: 0.3;
  position: absolute;
  top: -0.5rem;
  left: 0.75rem;
  line-height: 1;
}

.about-text blockquote p {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.85;
}

.about-text blockquote cite {
  display: block;
  margin-top: 0.75rem;
  color: var(--accent-gold);
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
}

/* Hero label + line for page headers */
.hero-label {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

.hero-line {
  width: 60px;
  height: 2px;
  background: var(--accent-red);
  margin: 1rem auto;
}

/* Highlights grid for philosophy cards */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .highlights-grid { grid-template-columns: 1fr; }
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: border-color var(--transition);
}

.contact-info-card:hover { border-color: rgba(192, 57, 43, 0.30); }

.contact-info-card h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.contact-info-card h3 i,
.contact-info-card h3 svg { color: var(--accent-gold); stroke: var(--accent-gold); }
.contact-info-card p, .contact-info-card a { color: var(--text-secondary); font-size: 1rem; line-height: 1.8; }

.hours-table { margin-top: 0.5rem; }
.hours-table .hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 1rem;
}

.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 100%;
  min-height: 400px;
}

.map-container iframe { width: 100%; height: 100%; border: none; }

/* ---------- Legal pages ---------- */
.legal-content { max-width: 800px; margin: 0 auto; padding: 3rem 1.5rem; }
.legal-content h2 { margin: 2rem 0 1rem; font-size: 1.3rem; }
.legal-content h3 { margin: 1.5rem 0 0.75rem; font-size: 1.1rem; }
.legal-content p { color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.8; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { color: var(--text-secondary); line-height: 1.8; }

/* ---------- PDF Download ---------- */
.pdf-download {
  text-align: center;
  padding: 2.5rem;
  margin-top: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
}

.pdf-download p { color: var(--text-secondary); margin-bottom: 1.25rem; }

/* ---------- Highlight Cards (reusable) ---------- */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
}

.highlight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(192, 57, 43, 0.30);
  box-shadow: 0 4px 20px rgba(192, 57, 43, 0.10);
}

.highlight-card .icon,
.highlight-card .highlight-icon { font-size: 2rem; color: var(--accent-gold); margin-bottom: 1rem; }
.highlight-card .highlight-icon svg { stroke: var(--accent-gold); }
.highlight-card h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.highlight-card p { color: var(--text-secondary); font-size: 1rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .showcase-item.tall { grid-row: span 1; }
  .gallery-preview { grid-template-columns: repeat(2, 1fr); grid-template-rows: 200px 200px; }
  .hours-cta { grid-template-columns: 1fr; }
}

@media (max-width: 992px) {
  .gallery-grid { columns: 2; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-grid.reverse { direction: ltr; }
  .menu-pdf-preview { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 68px; }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26, 21, 16, 0.98);
    backdrop-filter: blur(20px);
    padding: 8rem 2rem 6rem;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  .nav-links a {
    font-size: 1.2rem;
    letter-spacing: 2px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease, color 0.3s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links.open a {
    transform: translateY(0);
    opacity: 1;
  }
  .nav-links.open a:nth-child(1) { transition-delay: 0.05s; }
  .nav-links.open a:nth-child(2) { transition-delay: 0.1s; }
  .nav-links.open a:nth-child(3) { transition-delay: 0.15s; }
  .nav-links.open a:nth-child(4) { transition-delay: 0.2s; }
  .nav-links.open a:nth-child(5) { transition-delay: 0.25s; }

  .nav-cta {
    display: flex;
    position: fixed;
    bottom: 3rem;
    left: 0; right: 0;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.3s, visibility 0.4s ease 0.3s, transform 0.4s ease 0.3s;
  }

  .nav-cta.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .hamburger { display: flex; }

  section { padding: 4rem 0; }

  .hero { height: 100svh; min-height: auto; }
  .image-strip-track img { height: 180px; }

  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-item.wide { grid-column: span 1; }

  .gallery-grid { columns: 2; }
  .gallery-preview { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; }
  .gallery-preview .gp-item.span-2 { grid-column: span 1; }

  .food-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .menu-item { flex-direction: column; gap: 0.5rem; }
  .menu-item-price { align-self: flex-end; }

  .stats-bar { gap: 2rem; }
  .stat-number { font-size: 2rem; }
}

@media (max-width: 480px) {
  .food-grid, .gallery-preview { grid-template-columns: 1fr; }
  .gallery-preview { grid-template-rows: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .stats-bar { flex-direction: column; gap: 1.5rem; }
}

/* ---------- CTA Buttons Container ---------- */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--accent-red);
  color: white;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 100;
  box-shadow: 0 2px 10px rgba(192, 57, 43, 0.30);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-red-hover);
  transform: translateY(-3px);
}

/* ---------- Utility ---------- */
.text-gold { color: var(--accent-gold); }
.text-red { color: var(--accent-red); }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.full-width { width: 100vw; margin-left: calc(-50vw + 50%); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ========== Parallax Sections ========== */
.parallax-section {
  position: relative;
  min-height: 45vh;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 21, 16, 0.80);
  z-index: 1;
}

.parallax-section .parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 700px;
}

.parallax-section .parallax-content h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.parallax-section .parallax-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Mobile: disable parallax (perf issue on iOS) */
@media (max-width: 768px) {
  .parallax-section {
    background-attachment: scroll;
    min-height: 35vh;
  }
}

/* ========== Menu Visual Grid (Speisekarte) ========== */
.menu-visual-section {
  padding: 4rem 0;
}

.menu-visual-section .section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.menu-visual-section .section-label i {
  font-size: 2rem;
  color: var(--accent-gold);
}

.menu-visual-section .section-label h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--text-primary);
}

.menu-visual-section .section-label p {
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-size: 1.05rem;
}

.menu-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 992px) {
  .menu-visual-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.menu-visual-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.menu-visual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.menu-visual-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.menu-visual-card:hover img {
  transform: scale(1.03);
}

/* ========== Speisekarte Hero ========== */
.menu-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.menu-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 21, 16, 0.80);
}

.menu-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.menu-hero-content h1 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.menu-hero-content .gold-line {
  margin: 1rem auto;
}

.menu-hero-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ========== PDF Download CTA ========== */
.pdf-cta-section {
  padding: 5rem 0;
  text-align: center;
  background: #362c24;
}

.pdf-cta-section h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.pdf-cta-section p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.pdf-cta-section .btn i {
  margin-right: 0.5rem;
}

/* ========== Menu Section Intro ========== */
.menu-section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.menu-section-intro .section-icon {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.menu-section-intro h2 {
  margin-bottom: 0.75rem;
}

.menu-section-intro p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ========== Homepage Parallax Quote ========== */
.quote-section {
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 21, 16, 0.80);
}

.quote-section blockquote {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #e8c9a0;
  line-height: 1.5;
  font-style: italic;
}

.quote-section cite {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 1.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  font-style: normal;
}

@media (max-width: 768px) {
  .quote-section {
    background-attachment: scroll;
    padding: 4rem 1.5rem;
  }
}

/* (Page loader, film grain, scroll progress, custom cursor removed for clean light theme) */

/* ---------- Hero v2 ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 21, 16, 0.80);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 1.5rem;
  color: var(--text-primary);
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.hero-subtitle {
  color: var(--text-secondary);
  font-style: italic;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  margin-bottom: 2rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--accent-gold);
  opacity: 0.6;
  z-index: 2;
  animation: bounce-arrow 2.5s infinite;
}
@keyframes bounce-arrow {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ---------- Marquee v2 ---------- */
.marquee {
  background: var(--bg-section);
  padding: 1rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 1rem;
  will-change: transform;
}
.marquee-item {
  flex-shrink: 0;
  width: 200px;
  height: 130px;
  border-radius: var(--radius);
  overflow: hidden;
}
.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Specialties v2 ---------- */
.specialties-section {
  padding: 6rem 0;
  background: var(--bg-body);
  overflow: hidden;
}
.specialty-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 400px;
  margin-bottom: 2px;
}
.specialty-item.reversed {
  direction: rtl;
}
.specialty-item.reversed > * {
  direction: ltr;
}
.specialty-img {
  overflow: hidden;
  clip-path: inset(0);
}
.specialty-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.specialty-item:hover .specialty-img img {
  transform: scale(1.05);
}
.specialty-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  background: #302820;
}
.specialty-num {
  color: var(--accent-gold);
  font-size: 1rem;
  letter-spacing: 3px;
  font-weight: 600;
}
.specialty-text h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 0.5rem 0;
}
.specialty-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ---------- Gallery Strip ---------- */
.gallery-section { padding: 4rem 0; background: #2a2318; overflow: hidden; }
.gallery-strip-wrapper { overflow: hidden; }
.gallery-strip {
  display: flex;
  gap: 1rem;
  padding: 0 2rem;
  will-change: transform;
}
.gallery-strip-item {
  flex-shrink: 0;
  width: 300px;
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.gallery-strip-item:hover img {
  transform: scale(1.08);
}
.gallery-strip-item:hover {
  box-shadow: var(--shadow-gold);
}
.gallery-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--bg-card);
  color: var(--accent-gold);
  border: 1px solid var(--border-gold);
  text-decoration: none;
  font-weight: 600;
}

/* ---------- Menu Sticky Nav ---------- */
.menu-pills {
  position: sticky;
  top: var(--nav-height);
  z-index: 90;
  background: var(--bg-body);
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.menu-pills-inner {
  display: flex;
  gap: 0.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.menu-pills-inner::-webkit-scrollbar { display: none; }
.menu-pill {
  flex-shrink: 0;
  background: var(--bg-card);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  padding: 0.4rem 1rem;
  border-radius: 0;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.menu-pill.active {
  background: var(--accent-gold);
  color: #fff;
  font-weight: 600;
}
.menu-pills-sep {
  width: 1px;
  background: var(--border-color);
  flex-shrink: 0;
  margin: 0 0.25rem;
}

/* ---------- Chapter Intros ---------- */
.chapter-intro {
  position: relative;
  padding: 5rem 2rem;
  text-align: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.chapter-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 21, 16, 0.80);
}
.chapter-content {
  position: relative;
  z-index: 2;
}
.chapter-label {
  color: var(--accent-gold);
  font-size: 1rem;
  letter-spacing: 4px;
}
.chapter-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin: 0.5rem 0;
}
.chapter-line {
  width: 40px;
  height: 1px;
  background: var(--accent-red);
  margin: 0.75rem auto;
  transform-origin: center;
}
.chapter-sub {
  color: var(--text-muted);
  font-style: italic;
  font-size: 1rem;
}

/* ---------- Menu Sections ---------- */
.menu-section { padding: 3rem 0; max-width: var(--max-width); margin: 0 auto; padding-left: 1.5rem; padding-right: 1.5rem; }
.menu-cat-header {
  display: grid;
  grid-template-columns: 35% 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: center;
}
.menu-cat-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 200px;
}
.menu-cat-img img { width: 100%; height: 100%; object-fit: cover; }
.menu-cat-info h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: 0.5rem; }
.menu-cat-info p { color: var(--text-muted); font-size: 1rem; }

/* Menu Items - updated */
.menu-item-variants .variant-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.variant-pill {
  background: var(--bg-section);
  color: var(--text-secondary);
  padding: 0.4rem 0.75rem;
  border-radius: 2px;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.variant-pill strong { color: var(--accent-gold); }

/* Signature callout */
.signature-img {
  width: 100%;
  max-height: 280px;
  overflow: hidden;
}
.signature-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.signature-callout {
  background: var(--bg-section);
  border: 1px solid rgba(192, 57, 43, 0.30);
  border-radius: 2px;
  overflow: hidden;
  padding-bottom: 2rem;
  text-align: center;
  margin: 2rem 0;
}
.signature-callout .signature-label,
.signature-callout h3,
.signature-callout p,
.signature-callout .variant-pills {
  padding-left: 2rem;
  padding-right: 2rem;
}
.signature-callout .signature-label { padding-top: 1.5rem; }
.signature-label {
  color: var(--accent-red);
  font-size: 1rem;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.signature-callout h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.signature-callout p { color: var(--text-muted); margin-bottom: 1rem; }
.signature-callout .variant-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Accordion */
.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.faq-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: background 0.3s ease;
}
.faq-toggle:hover { background: var(--bg-section); }
.faq-toggle svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--accent-gold);
}
.faq-item.open .faq-toggle svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.25rem;
  background: var(--bg-section);
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 1rem 1.25rem;
}
.faq-answer p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}
.faq-answer a { color: var(--accent-gold); text-decoration: underline; }

/* Allergen accordion */
.allergen-toggle {
  background: var(--bg-card);
  border: none;
  color: var(--text-secondary);
  padding: 1rem 1.5rem;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  cursor: pointer;
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
}
.allergen-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.allergen-content.open { max-height: 500px; }

/* ---------- Section Headers ---------- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  margin-bottom: 0.5rem;
}
.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- About Gallery (Über uns) ---------- */
.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.about-gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 100%;
  transition: transform 0.6s ease;
}
.about-gallery-item:hover img { transform: scale(1.04); }

/* ---------- Mobile Responsive for new components ---------- */
@media (max-width: 768px) {
  .specialty-item,
  .specialty-item.reversed {
    grid-template-columns: 1fr;
    direction: ltr;
    min-height: auto;
  }
  .specialty-img { height: 250px; }
  .specialty-text { padding: 2rem 1.5rem; }
  .gallery-strip-item { width: 220px; height: 160px; }
  .menu-cat-header { grid-template-columns: 1fr; }
  .menu-cat-img { height: 150px; }
  .marquee-item { width: 150px; height: 100px; }
  .hours-image { min-height: 250px; }
  .about-gallery { grid-template-columns: 1fr; }
  .about-gallery-item img { height: 220px; }
}

@media (max-width: 480px) {
  .specialty-img { height: 200px; }
  .specialty-text { padding: 1.5rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .gallery-strip-item { width: 180px; height: 130px; }
  .about-gallery-item img { height: 180px; }
  .gallery-grid { columns: 1; }
  .intro-portrait img { width: 80px; height: 80px; }
  .ambiente-grid { grid-template-columns: 1fr; }
}

/* ========== Hero Stars & Rating ========== */
.hero-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.hero-rating-text {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-left: 0.5rem;
  font-weight: 500;
}

/* ========== Intro Section ========== */
.intro-section {
  padding: 5rem 0;
  background: #33291f;
  text-align: center;
}
.intro-content {
  max-width: 700px;
  margin: 0 auto 3rem;
}
.intro-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}
.intro-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.intro-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.intro-portrait img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-gold);
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.2);
}
.intro-portrait span {
  font-size: 1rem;
  color: var(--accent-gold);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ========== CTA Banner ========== */
.cta-banner {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--accent-red) 0%, #8b1a10 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
}
.cta-banner h2 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  backdrop-filter: blur(4px);
}
.cta-banner .btn:hover {
  background: #fff;
  color: var(--accent-red);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ========== Reviews Section ========== */
.reviews-section {
  padding: 5rem 0;
  background: var(--bg-body);
}
.reviews-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.reviews-stars {
  display: flex;
  gap: 0.15rem;
}
.reviews-badge span {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
}

/* ========== Ambiente Section ========== */
.ambiente-section {
  padding: 5rem 0;
  background: #2e261e;
}
.ambiente-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ambiente-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.ambiente-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.ambiente-item:hover img {
  transform: scale(1.05);
}

/* ========== Responsive for new sections ========== */
@media (max-width: 768px) {
  .intro-section { padding: 3.5rem 0; }
  .intro-content h2 { font-size: 1.4rem; }
  .cta-banner { padding: 3rem 1.5rem; }
  .cta-banner h2 { font-size: 1.2rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .ambiente-grid { grid-template-columns: 1fr; }
  .ambiente-item img { height: 200px; }
  .hero-stars svg { width: 14px; height: 14px; }
  .hero-rating-text { font-size: 1rem; }
}
