* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

.site-shell {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

:root {
  /* Minimalist Premium Gray Palette */
  --bg-primary: #0d0d0d;
  --bg-secondary: #141414;
  --text-primary: #ffffff;
  --text-secondary: #999999;
  --accent: #f7a402; /* New Vibrant Gold/Amber */
  --accent-glow: rgba(247, 164, 2, 0.4);
  --accent-soft: rgba(247, 164, 2, 0.1);
  
  --line-color: rgba(247, 164, 2, 0.15); /* Match new gold */
  --glass: rgba(255, 255, 255, 0.03);
  
  --font-display: "Playfair Display", serif;
  --font-sans: "Inter", sans-serif;
  
  --spacing-section: 100px;
  --container-width: 1100px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: transparent;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background-color: #0d0d0d;
  background-image: url("Assets/BG.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* Light Drawing / Flourish Background with Glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: 
    url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 1000 1000' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='glow'%3E%3CfeGaussianBlur stdDeviation='3' result='coloredBlur'/%3E%3CfeMerge%3E%3CfeMergeNode in='coloredBlur'/%3E%3CfeMergeNode in='SourceGraphic'/%3E%3CfeMerge%3E%3C/filter%3E%3Cpath d='M0,200 Q400,100 800,400 T1000,200' stroke='%23ffffff' stroke-width='1.5' fill='none' opacity='0.2' filter='url(%23glow)'/%3E%3Cpath d='M200,1000 Q600,800 400,400 T800,0' stroke='%23ffffff' stroke-width='1.5' fill='none' opacity='0.15' filter='url(%23glow)'/%3E%3C/svg%3E");
  background-size: cover;
  pointer-events: none;
  z-index: 2;
}

/* Street Lamp Lights */
.lamp {
  position: fixed;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(40px);
  animation: lamp-flicker 8s ease-in-out infinite;
}

.lamp-1 { top: -100px; left: 10%; animation-delay: 0s; }
.lamp-2 { top: 40%; right: -100px; animation-delay: 2s; }
.lamp-3 { bottom: -100px; left: 30%; animation-delay: 4s; }

@keyframes lamp-flicker {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
  52% { opacity: 0.3; }
  54% { opacity: 0.6; }
}

/* Vignette */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.4) 100%);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

.site-shell {
  position: relative;
  z-index: 10;
}

/* --- Navigation --- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 60px, var(--container-width));
  padding: 40px 0;
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1000;
}

.burger-menu {
  display: none;
}

.brand {
  flex: 0 0 auto;
  position: relative;
  z-index: 5;
}

.brand-logo {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 0 10px var(--accent-glow));
}

.nav-links.centered {
  display: flex;
  gap: 40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-actions {
  display: flex;
  align-items: center;
}

.nav-phone {
  display: none;
}

.nav-links.centered a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links.centered a:hover {
  color: var(--accent);
}

.nav-actions {
  flex: 0 0 auto;
}

.nav-cta {
  padding: 12px 32px;
  background: rgba(247, 164, 2, 0.05);
  color: var(--accent);
  border: 1px solid var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  box-shadow: 0 0 15px var(--accent-soft);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.nav-cta:hover {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 30px var(--accent-glow);
  transform: translateY(-2px);
}

/* --- Hero --- */
.hero {
  position: relative;
  width: 100%;
  padding: 40px 20px 100px; /* Reduced top padding */
}

.hero-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  position: relative;
  z-index: 100;
  min-height: 800px;
}

.hero-main-visual {
  flex: 0 0 1100px;
  min-height: 650px;
  z-index: 2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-burger-img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: block;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.98));
}

.hero-drawing {
  flex: 1;
  opacity: 0.3;
  filter: grayscale(1) invert(1) blur(1px);
  transition: all 0.8s ease;
}

.hero-drawing img {
  width: 100%;
  height: auto;
}

.hero-drawing.left {
  transform: translateX(120px) translateY(-20px) rotate(-12deg);
  opacity: 0.25;
}

.hero-drawing.right {
  transform: translateX(-120px) translateY(40px) rotate(10deg);
  opacity: 0.25;
}

.hero-copy-bg {
  position: absolute;
  top: 240px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
  pointer-events: none;
}

.hero-copy-bg h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 10px 80px rgba(0,0,0,0.95);
  line-height: 0.85;
}

.hero-copy-bg .line-1 {
  font-size: clamp(2.5rem, 10vw, 6rem); /* Larger */
  letter-spacing: 0.1em;
  margin-bottom: -10px; /* Tight but controlled */
}

.hero-copy-bg .line-2 {
  font-size: clamp(3.5rem, 14vw, 9.5rem); /* Slightly smaller */
  letter-spacing: 0.05em;
  font-style: normal;
  margin-top: 20px; /* Move it down */
}

.hero-badge {
  position: absolute;
  top: 5%;
  right: 35%; /* Further left */
  width: 100px; /* Larger */
  z-index: 5;
  opacity: 0.95;
  filter: drop-shadow(0 0 25px var(--accent-glow));
}

.hero-badge img {
  width: 100%;
  height: auto;
}

.hero-footer-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: -140px;
  position: relative;
  z-index: 200;
}

.minimal-scroll-link {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all 0.4s ease;
  position: relative;
  padding-bottom: 8px;
}

.minimal-scroll-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 20px;
  height: 1px;
  background: var(--text-secondary);
  transform: translateX(-50%);
  transition: all 0.4s ease;
}

.minimal-scroll-link:hover {
  color: var(--accent);
  letter-spacing: 0.6em;
}

.minimal-scroll-link:hover::after {
  width: 100%;
  background: var(--accent);
}

.button {
  padding: 18px 45px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  color: var(--text-primary);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

.button-primary {
  border-color: var(--accent);
  background: rgba(247, 164, 2, 0.05);
  color: var(--accent);
  box-shadow: 0 0 20px var(--accent-soft);
}

.button:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--text-primary);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.button-primary:hover {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 40px var(--accent-glow);
}

.button-secondary {
  border-color: var(--line-color);
  color: var(--text-primary);
}

.button-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* --- Sections --- */
.section {
  padding: var(--spacing-section) 20px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 100px;
}

.section-header .eyebrow {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 30px;
}

.section-header h2 em {
  font-style: italic;
}

.section-text {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* --- Concept Redesign --- */
.concept-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: center;
}

.concept-typographic-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}

.massive-text {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.1);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 0.8;
  letter-spacing: -0.05em;
  margin: 0;
  transform: rotate(180deg);
}

.concept-image-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(400px, 90vw);
  height: min(400px, 90vw);
  margin: 0 auto;
}

.concept-image-container::before {
  content: "";
  position: absolute;
  inset: -15%;
  background-image: url("Assets/Zeichnungen png/Burger.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.18;
  z-index: 1;
  pointer-events: none;
  animation: floatBackgroundDrawing 8s ease-in-out infinite;
}

.concept-image-container::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 180, 0, 0.35) 0%, rgba(255, 180, 0, 0.08) 50%, transparent 75%);
  z-index: 2;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(15px);
}

.concept-overlay-drawing {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 20px 45px rgba(0,0,0,0.85));
}

.halal-badge {
  position: absolute;
  bottom: 12%;
  left: -3%;
  width: clamp(95px, 18vw, 140px);
  height: auto;
  z-index: 20;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.7)) brightness(0.95);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: rotate(-10deg);
}

.halal-badge:hover {
  transform: scale(1.12) rotate(-5deg) translateY(-5px);
  filter: drop-shadow(0 15px 35px rgba(247, 164, 2, 0.35)) brightness(1.05);
}

.concept-typographic-art .concept-image-container {
  position: absolute;
  width: 600px;
  height: 600px;
  margin: 0;
  right: -100px;
  transform: translateY(80px);
}

@keyframes floatBackgroundDrawing {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
}

@keyframes floatGeneral {
  0%, 100% { transform: translateX(var(--base-x)) rotate(var(--base-r)) translateY(0); }
  50% { transform: translateX(var(--base-x)) rotate(var(--base-r)) translateY(-15px); }
}

.concept-details {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 60px;
  border-left: 1px solid var(--accent);
  padding-left: 30px;
}

.concept-detail-item strong {
  display: block;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.concept-detail-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Menu --- */
.menu-layout {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.menu-category {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.category-title {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  border-bottom: 1px solid var(--line-color);
  padding-bottom: 15px;
  width: fit-content;
}

#menu.section {
  max-width: 1600px;
}

.menu-images-container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 0;
  justify-content: center;
  padding: 0 40px;
}

.menu-zoom-link {
  display: block;
  flex: 1;
  max-width: 720px;
  cursor: zoom-in;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu-zoom-link:hover {
  z-index: 20;
  box-shadow: 0 15px 45px rgba(0,0,0,0.5);
}

.menu-page {
  width: 100%;
  height: auto;
  border: 1px solid var(--line-color);
}

.menu-header-flex {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
  min-height: 220px;
}

.menu-header-flex .section-header {
  margin-bottom: 0;
  text-align: center;
  z-index: 10;
}

.menu-typographic-art {
  position: absolute;
  left: calc(50% + 300px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .menu-typographic-art {
    left: calc(50% + 200px);
  }
}

@media (max-width: 900px) {
  .menu-header-flex {
    flex-direction: column;
    min-height: 0;
  }
  .menu-typographic-art {
    position: static;
    transform: none;
    margin-top: 50px;
  }
}

.menu-overlay-drawing {
  position: absolute;
  top: 20px;
  right: 60px;
  width: 220px;
  z-index: 5;
  transform: rotate(-8deg);
  filter: drop-shadow(0 0 10px var(--accent-glow));
  animation: floatFries 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatFries {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-5deg) translateY(-15px); }
}

.menu-typographic-art .massive-text {
  font-size: clamp(4rem, 10vw, 8rem);
  writing-mode: horizontal-tb;
  transform: none;
  -webkit-text-stroke: 1px rgba(255,255,255,0.08);
  opacity: 0.4;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.98);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 40px;
  backdrop-filter: blur(15px);
  overflow: auto;
}

.lightbox:target {
  display: flex;
}

.lightbox-close-overlay {
  position: fixed;
  inset: 0;
  cursor: zoom-out;
  z-index: 2001;
}

.zoom-checkbox {
  display: none;
}

.zoom-container {
  position: relative;
  z-index: 2002;
  cursor: zoom-in;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 0 100px rgba(0,0,0,1);
  border: 1px solid var(--line-color);
  animation: zoomIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.4s ease;
}

.zoom-checkbox:checked + .zoom-container {
  cursor: zoom-out;
  display: block;
}

.zoom-checkbox:checked + .zoom-container .lightbox-img {
  max-width: 1800px;
  width: 150vw;
  max-height: none;
  margin: 0 auto;
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.menu-pdf-wrap {
  text-align: center;
  margin-top: 60px;
}

.minimal-link {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.minimal-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
  opacity: 1;
}

.menu-page:hover {
  border-color: var(--accent-soft);
}

.menu-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-soft);
}

.menu-card h3 {
  font-size: 2rem;
  font-family: var(--font-display);
  margin-bottom: 15px;
  color: var(--accent); /* More gold in headers */
}

.menu-card p {
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.menu-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-foot strong {
  font-size: 1.5rem;
  font-weight: 500;
}

/* --- Experience Artistic Grid --- */
.experience-artistic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 120px; /* Reduced gap slightly for better cohesion */
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 60px;
  align-items: center; /* Changed from start to center */
}

.exp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
  position: relative;
  min-height: 450px;
}

.exp-content {
  max-width: 100%;
  position: relative;
  z-index: 10;
}

.exp-content h3 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-family: var(--font-display);
  margin: 10px 0 25px;
  font-weight: 500;
  line-height: 1;
}

.exp-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.exp-visual {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  pointer-events: none;
}

.exp-drawing {
  position: absolute;
  z-index: 2;
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.7));
  opacity: 0.5;
  animation: floatGeneral 7s ease-in-out infinite;
}

.drawing-bottle { 
  width: 180px; 
  opacity: 0.4;
  --base-x: 40px;
  --base-r: 10deg;
}

.concept-drawing-mid {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 40px 0;
  perspective: 1000px;
}

.concept-mid-burger {
  width: min(350px, 80%);
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
  animation: floatGeneral 8s ease-in-out infinite;
}

.drawing-salat { 
  width: clamp(240px, 26vw, 340px); 
  --base-x: -40px;
  --base-r: -5deg;
}

.exp-bg-text {
  position: absolute;
  font-size: clamp(6rem, 15vw, 13rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.05);
  z-index: 1;
  pointer-events: none;
  letter-spacing: 0.15em;
}

/* Motto Center Column */
.exp-motto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}

.massive-motto {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.85;
  letter-spacing: -0.03em;
  font-weight: 900;
  margin-bottom: 40px;
  color: var(--text-primary);
  text-align: center;
}

.motto-line {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 40px;
}

.motto-sub {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--text-secondary);
  text-align: center;
}

@media (max-width: 900px) {
  .exp-card { flex-direction: column !important; gap: 40px; text-align: center; }
  .exp-visual { min-height: 350px; }
  .drawing-bottle, .drawing-salat { width: 80%; }
}

/* --- Visit Section (Integrated with Map) --- */
.visit-monolith {
  max-width: 1500px;
  margin: 120px auto; /* More margin for popping elements */
  background: var(--bg-secondary);
  border: 1px solid var(--line-color);
  position: relative;
  overflow: visible; /* Key change */
  box-shadow: 0 50px 100px rgba(0,0,0,0.5);
}

.visit-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 50; /* High z-index to pop out over everything */
}

.deco-fries {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  opacity: 0.6;
  filter: grayscale(0.1) drop-shadow(0 30px 60px rgba(0,0,0,0.9));
  transform: rotate(15deg) scale(1.1);
}

.deco-burger {
  position: absolute;
  bottom: -100px;
  left: -90px;
  width: 380px;
  opacity: 0.5;
  filter: grayscale(0.1) drop-shadow(0 30px 60px rgba(0,0,0,0.9));
  transform: rotate(-12deg) scale(1.05);
}

.visit-monolith-header {
  padding: 80px 80px 40px;
  position: relative;
  z-index: 10;
}

.visit-monolith-header h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.95;
}

.visit-monolith-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 600px;
  position: relative;
  z-index: 5;
}

.visit-info {
  padding: 40px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line-color);
}

/* --- Hero Test Optimization --- */
.hero-test-section {
  width: min(100% - 40px, 680px); 
  margin: 15px auto 200px;
  position: relative;
  background: transparent;
}

.hero-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 190, 0, 0.16) 0%, transparent 80%);
  z-index: 2;
  pointer-events: none;
  filter: blur(60px);
  animation: lampFlicker 4s infinite;
}

@keyframes lampFlicker {
  0%, 100% { opacity: 0.6; }
  10%, 90% { opacity: 0.4; }
  20%, 80% { opacity: 0.7; }
  30%, 70% { opacity: 0.3; }
  40%, 60% { opacity: 0.5; }
  50% { opacity: 0.65; }
  52% { opacity: 0.2; }
  54% { opacity: 0.6; }
}

.hero-test-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 5;
}

.hero-deco {
  position: absolute;
  z-index: 1;
  opacity: 0.18;
  filter: grayscale(1) invert(0.1);
  pointer-events: none;
  animation: floatDecoLeft 12s ease-in-out infinite;
}

.deco-left {
  width: 300px;
  left: -150px;
  top: 40%;
}

.deco-right {
  width: 350px;
  right: -180px;
  bottom: 25%;
  animation: floatDecoRight 14s ease-in-out infinite;
}

@keyframes floatDecoLeft {
  0%, 100% { transform: rotate(-15deg) translateY(0); }
  50% { transform: rotate(-12deg) translateY(-20px); }
}

@keyframes floatDecoRight {
  0%, 100% { transform: rotate(20deg) translateY(0); }
  50% { transform: rotate(23deg) translateY(-20px); }
}

.hero-test-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
  gap: 30px;
}

.hero-awards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.hero-awards img {
  height: clamp(120px, 20vw, 210px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.45)) grayscale(0.15) brightness(0.95);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-awards img:nth-child(2) {
  height: clamp(110px, 18.5vw, 195px);
}

.hero-awards img:last-child {
  height: clamp(100px, 17vw, 175px);
}

.hero-awards img:hover {
  filter: drop-shadow(0 15px 30px rgba(247, 164, 2, 0.35)) grayscale(0) brightness(1.1);
  transform: translateY(-5px) scale(1.05);
}

@media (max-width: 768px) {
  .hero-test-footer {
    margin-top: 25px;
    gap: 20px;
  }
  .hero-awards {
    gap: 15px;
  }
  .hero-awards img {
    height: 135px;
  }
  .hero-awards img:nth-child(2) {
    height: 125px;
  }
  .hero-awards img:last-child {
    height: 110px;
  }
}

/* --- Hero --- */
.hero {
  display: none; /* Hidden for test */
}

.visit-monolith-data {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.data-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.data-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 8px;
}

.data-value {
  font-size: 1rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.visit-monolith-action {
  margin-top: 60px;
  display: flex;
}

.visit-map-side {
  position: relative;
  background: #000;
}

.visit-map-side .map-wrapper {
  height: 100%;
  opacity: 0.8;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.visit-map-side .map-wrapper:hover {
  opacity: 1;
}

.visit-map-side iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1100px) {
  .visit-monolith-data { grid-template-columns: 1fr; }
  .visit-monolith-grid { grid-template-columns: 1.1fr 0.9fr; }
}

@media (max-width: 900px) {
  .visit-monolith-grid { grid-template-columns: 1fr; }
  .visit-info { padding: 40px; border-right: none; border-bottom: 1px solid var(--line-color); }
  .visit-monolith-header { padding: 60px 40px 20px; }
  .visit-map-side { height: 400px; }
}

/* --- Footer --- */
.site-foot {
  padding: 80px 20px;
  border-top: 1px solid var(--line-color);
  background: var(--bg-primary);
}

.foot-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 1500px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
}

.foot-logo {
  height: 90px;
  width: auto;
  filter: grayscale(1) brightness(0.8);
  transition: all 0.4s ease;
}

.foot-logo:hover {
  filter: grayscale(0) brightness(1);
}

.foot-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.foot-legal {
  display: flex;
  align-items: center;
  gap: 15px;
}

.foot-legal a:hover {
  color: var(--accent);
}

.sep {
  opacity: 0.3;
}

@media (max-width: 768px) {
  .foot-inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .foot-right {
    align-items: center;
  }
}

/* Utilities */
.hero-metrics, .ticker, .corner, .hero-frame, .hero-noise, .brand-mark, .brand-copy small, .smoke, .kicker-dot, .kicker-sep, .eyebrow-line, .metric, .pill, .menu-tag, .menu-num, .menu-dots, .quote-mark, .quote-rule, .visit-frame, .badge-top, .badge-bottom, .stage-glow, .stage-card, .burger-visual {
  display: none !important;
}

@media (max-width: 900px) {
  .nav { flex-direction: column; gap: 30px; }
  .nav-links { display: none; }
  .concept-grid, .menu-grid, .experience-grid { grid-template-columns: 1fr; }
  .experience-panel.wide { grid-column: span 1; }
  .visit-banner { flex-direction: column; text-align: center; gap: 60px; }
  .visit-cards { text-align: center; }
  .foot-inner { flex-direction: column; gap: 40px; }
  .menu-images-container { flex-direction: column; align-items: center; padding: 0 20px; }
  .menu-zoom-link { width: 100%; max-width: 600px; }
  .menu-page { width: 100%; }
}
/* Sticky Call */
.sticky-call {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 70px;
  height: 70px;
  background: rgba(247, 164, 2, 0.1);
  border: 1px solid var(--accent);
  backdrop-filter: blur(15px);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  box-shadow: 0 0 30px var(--accent-soft);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sticky-call:hover {
  background: var(--accent);
  color: #000;
  transform: scale(1.15) rotate(15deg);
  box-shadow: 0 0 50px var(--accent-glow);
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 10px var(--accent-soft); transform: scale(1); }
  50% { box-shadow: 0 0 30px var(--accent-glow); transform: scale(1.05); }
  100% { box-shadow: 0 0 10px var(--accent-soft); transform: scale(1); }
}

@media (max-width: 600px) {
  .sticky-call {
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
  }
}

/* --- Bento Gallery --- */
.bento-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 15px;
  max-width: 1100px;
  margin: 0 auto;
}

.bento-item.wide { grid-column: span 2; }
.bento-item.tall { grid-row: span 2; }

.bento-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-color);
  background: var(--bg-secondary);
  border-radius: 30px;
}

.bento-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 180, 0, 0.1), transparent 70%);
  z-index: 2;
  pointer-events: none;
  animation: bentoFlicker 6s infinite alternate;
}

@keyframes bentoFlicker {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 0.4; }
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: saturate(0.8) contrast(1.1);
}

.bento-item:hover img {
  transform: scale(1.1);
  filter: saturate(1) contrast(1);
}

.bento-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bento-item:hover::after {
  opacity: 1;
}

@media (max-width: 1100px) {
  .bento-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 300px);
  }
  .bento-item.tall { grid-row: span 1; }
}

@media (max-width: 768px) {
  .bento-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 250px);
  }
  .bento-item.wide { grid-column: span 1; }
}

/* --- Google Reviews --- */
#reviews {
  padding: 80px 0;
  border-top: 1px solid var(--line-color);
  background: radial-gradient(circle at bottom right, rgba(247, 164, 2, 0.03) 0%, transparent 40%);
}

.reviews-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.reviews-header {
  text-align: center;
  margin-bottom: 80px;
}

.reviews-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.rating-num {
  font-size: 4rem;
  font-weight: 900;
  font-family: var(--font-display);
  line-height: 1;
  color: var(--text-primary);
}

.stars { 
  color: var(--accent); 
  letter-spacing: 6px; 
  font-size: 1.4rem; 
}

.review-count {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: var(--bg-secondary);
  padding: 50px 40px;
  border: 1px solid var(--line-color);
  position: relative;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.1;
  line-height: 1;
}

.review-card:hover {
  border-color: var(--accent);
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.reviewer {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.stars-gold { 
  color: var(--accent); 
  font-size: 0.9rem; 
  letter-spacing: 2px;
}

.review-card p {
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.8;
  font-size: 1.05rem;
  flex-grow: 1;
}

.review-date {
  display: block;
  margin-top: 30px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.4;
}

.reviews-action {
  text-align: center;
  margin-top: 80px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  :root { --container-width: 95%; }
  .nav-links.centered { gap: 20px; }
  .concept-layout { grid-template-columns: 1fr; }
  .massive-text { font-size: 8rem; }
}

.concept-mobile-drawing {
  display: none;
}

@media (max-width: 768px) {
  .nav { height: 120px; padding: 0 20px; display: flex; flex-direction: row; justify-content: space-between; align-items: center; position: relative; width: 100%; }
  .brand-logo { height: 45px; }
  .brand { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 50; }
  
  .burger-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
  }
  
  .nav-cta { display: none; }
  
  .nav-phone {
    display: flex;
    color: var(--text-primary);
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
    background: rgba(255,255,255,0.02);
  }
  
  .nav-phone svg { width: 18px; height: 18px; }

  .nav-links.centered { 
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #0d0d0d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1050;
    padding: 0;
    left: auto;
    transform: none;
  }
  
  .nav-links.centered.active { right: 0; }
  .nav-links.centered a { font-size: 1.5rem; letter-spacing: 0.2em; }
  
  .burger-menu.active span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
  .burger-menu.active span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

  .nav-actions { display: flex; align-items: center; }

  .hero-test-section { width: 100%; padding: 0; margin: 40px auto; overflow: hidden; }
  .hero-deco { display: none; }
  .hero-test-img { z-index: 5; position: relative; width: 100%; margin-left: 0; }
  .hero-tagline { font-size: 1.25rem; padding: 0 20px; position: relative; z-index: 5; }
  
  .menu-header-flex { flex-direction: column; text-align: center; align-items: center; }
  .menu-typographic-art { display: none; }
  
  .concept-typographic-art { display: none; }
  .concept-mobile-drawing { 
    display: flex; 
    justify-content: flex-end; 
    margin: 30px -20px 30px 0; 
    overflow: visible;
  }
  .concept-mobile-drawing .concept-image-container {
    width: min(420px, 100vw);
    height: min(420px, 100vw);
  }
  .concept-content { padding: 20px; }
  
  .experience-artistic-grid { grid-template-columns: 1fr; gap: 20px; padding: 0 20px; }
  .exp-card { min-height: auto; padding: 20px 0; }
  .massive-motto { font-size: 3.5rem; margin-bottom: 10px; }
  .motto-line { margin-bottom: 10px; }
  
  .bento-gallery { 
    grid-template-columns: 1fr; 
    grid-template-rows: auto;
    width: 100%;
    padding: 0 20px;
    gap: 20px;
  }
  .bento-item.wide, .bento-item.tall { grid-column: span 1; grid-row: span 1; }
  .bento-item { height: 280px; }
  
  .reviews-grid { grid-template-columns: 1fr; gap: 20px; }
  
  .visit-monolith-grid { grid-template-columns: 1fr; width: 100%; }
  .visit-decorations { display: block; z-index: 1; }
  .deco-fries { width: 160px; top: -60px; right: -30px; transform: rotate(15deg) scale(1); }
  .deco-burger { width: 180px; bottom: -50px; left: -30px; transform: rotate(-12deg) scale(1); }
  
  .foot-inner { flex-direction: column; gap: 40px; text-align: center; }
  .foot-logo { height: 110px; }

  .burger-menu span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
  }
}

.hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 30px;
  letter-spacing: 0.05em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .brand-logo { height: 35px; }
  .section-header h2 { font-size: 2.2rem; }
  .massive-motto { font-size: 2.8rem; }
  .hero-tagline { font-size: 1.15rem; }
}

/* --- Location Map --- */
#location-map {
  padding: 0;
  border-top: 1px solid var(--line-color);
  border-bottom: 1px solid var(--line-color);
  background: #000;
  margin-top: 120px;
}

.map-wrapper {
  position: relative;
  line-height: 0;
  transition: all 0.6s ease;
  opacity: 0.85;
}

.map-wrapper:hover {
  opacity: 1;
}

.map-wrapper.active {
  opacity: 1;
}

.map-wrapper iframe {
  pointer-events: none;
}

.map-wrapper.active iframe {
  pointer-events: auto;
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.65);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.4s ease;
}

.map-overlay span {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent, #f7a402);
  background: rgba(13, 13, 13, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 24px;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.map-overlay:hover span {
  background: var(--accent, #f7a402);
  color: #0d0d0d;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(247, 164, 2, 0.25);
}

.map-wrapper.active .map-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* --- Preloader --- */
#preloader {
  position: fixed;
  inset: 0;
  background: #0d0d0d;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s ease, visibility 1s ease;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  gap: 30px;
}

.preloader-welcome {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.5em;
  font-weight: 300;
  z-index: 15;
  text-align: center;
  opacity: 0.6;
}

.preloader-star {
  width: 100px;
  height: auto;
  z-index: 10;
  animation: starRotate 5s linear infinite;
  filter: drop-shadow(0 0 30px rgba(255, 180, 0, 0.2));
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.preloader-star.loaded {
  opacity: 1;
}

@keyframes starRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.pre-deco {
  position: absolute;
  opacity: 0;
  filter: grayscale(1) invert(0.2);
  pointer-events: none;
  transition: opacity 0.8s ease-in-out;
}

.pre-deco.loaded {
  opacity: 0.35;
}

/* Left Decorations */
.pre-left-1 { width: 300px; left: 2%; top: 15%; animation: preFloat 7s ease-in-out infinite; }
.pre-left-2 { width: 250px; left: 10%; bottom: 10%; animation: preFloat 9s ease-in-out infinite reverse; }
.pre-left-3 { width: 200px; left: 25%; top: 40%; animation: preFloat 8s ease-in-out infinite; }

/* Right Decorations */
.pre-right-1 { width: 320px; right: 3%; top: 20%; animation: preFloat 6s ease-in-out infinite; }
.pre-right-2 { width: 380px; right: 8%; bottom: 15%; animation: preFloat 10s ease-in-out infinite reverse; }

@keyframes preFloat {
  0%, 100% { transform: translateY(0) rotate(-10deg) scale(1); }
  50% { transform: translateY(-40px) rotate(5deg) scale(1.05); }
}

@media (max-width: 768px) {
  /* Preloader Mobile Fix - Placed here to override global rules */
  .preloader-welcome { font-size: 0.6rem; letter-spacing: 0.3em; }
  .preloader-star { width: 80px; }
  .pre-left-1 { width: 260px; left: 50%; margin-left: -130px; top: 26%; animation: preFloatMobile 6s ease-in-out infinite; }
  .pre-right-1 { width: 260px; right: auto; left: 50%; margin-left: -130px; bottom: 5%; top: auto; animation: preFloatMobile 7s ease-in-out infinite reverse; }
  .pre-left-2, .pre-left-3, .pre-right-2 { display: none; }
  .drawing-bottle { width: 110px; top: -30px; right: -20px; }
}

@keyframes preFloatMobile {
  0%, 100% { transform: translateY(0) rotate(-5deg) scale(1); }
  50% { transform: translateY(-30px) rotate(5deg) scale(1.05); }
}/* --- Mobile Fixed Background Drawings --- */
.mobile-fixed-bg {
  display: none; /* hidden on desktop */
}

@media (max-width: 768px) {
  .mobile-fixed-bg {
    display: block;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
  }

  .fixed-deco {
    position: absolute;
    opacity: 0.1;
    filter: grayscale(1) invert(0.15);
  }

  /* Top-left: Burger */
  .fixed-tl {
    width: 200px;
    top: 8%;
    left: -50px;
    animation: floatTL 10s ease-in-out infinite;
  }

  /* Top-right: Pommes */
  .fixed-tr {
    width: 180px;
    top: 12%;
    right: -40px;
    animation: floatTR 12s ease-in-out infinite reverse;
  }

  /* Bottom-left: Flasche */
  .fixed-bl {
    width: 80px;
    bottom: 10%;
    left: -20px;
    animation: floatBL 9s ease-in-out infinite;
  }

  /* Bottom-right: Salat */
  .fixed-br {
    width: 190px;
    bottom: 8%;
    right: -50px;
    animation: floatBR 11s ease-in-out infinite reverse;
  }
}

@keyframes floatTL {
  0%, 100% { transform: translateY(0) rotate(-8deg) scale(1); }
  50% { transform: translateY(-25px) rotate(4deg) scale(1.04); }
}
@keyframes floatTR {
  0%, 100% { transform: translateY(0) rotate(10deg) scale(1); }
  50% { transform: translateY(-20px) rotate(-5deg) scale(1.03); }
}
@keyframes floatBL {
  0%, 100% { transform: translateY(0) rotate(-5deg) scale(1); }
  50% { transform: translateY(-22px) rotate(8deg) scale(1.05); }
}
@keyframes floatBR {
  0%, 100% { transform: translateY(0) rotate(12deg) scale(1); }
  50% { transform: translateY(-18px) rotate(-3deg) scale(1.04); }
}
