/**
 * ═══════════════════════════════════════════════════════════════════════════════
 * CHULA - Mexican Concept Restaurant
 * Cinematic dark theme, fire & smoke, agave spirits
 * ═══════════════════════════════════════════════════════════════════════════════
 */

/* ═══════════════════════════════════════════════════════════════════════════════
   CSS CUSTOM PROPERTIES
   ═══════════════════════════════════════════════════════════════════════════════ */
:root {
  /* Colors - Cave/Fire Theme */
  --black: #050505;
  --black-pure: #000000;
  --charcoal: #0a0a0a;
  --charcoal-light: #121212;
  --stone: #1a1a1a;

  --red-deep: #8b2c2c;
  --red-glow: rgba(139, 44, 44, 0.5);

  --amber: #d4a574;

  --cream: #f5f0e8;
  --cream-muted: rgba(245, 240, 232, 0.7);
  --cream-subtle: rgba(245, 240, 232, 0.4);
  --smoke: rgba(255, 255, 255, 0.03);

  /* Typography
     --font-display : Headlines - gleiche Retro-Familie wie der CHULA-Schriftzug
     --font-primary : UI, Labels, Navigation, Buttons, Marquee
     --font-body    : Fliesstext */
  --font-display: 'Titan One', 'Alfa Slab One', Impact, serif;
  --font-primary: 'Barlow Condensed', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Barlow Condensed', 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  --space-2xl: 12rem;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

  /* Z-index */
  --z-marquee: 5;
  --z-modal: 100;
  --z-splash: 1000;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem; /* Barlow Condensed baut schmal - leicht hochskaliert */
  background-color: var(--black);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
  overflow: hidden;
}

/* Filmkorn ueber der gesamten Seite - nimmt den Flaechen die Flachheit */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

address {
  font-style: normal;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   SPLASH SCREEN
   ═══════════════════════════════════════════════════════════════════════════════ */
.splash {
  position: fixed;
  inset: 0;
  z-index: var(--z-splash);
  background-color: var(--black-pure);
  background-image: url('../images/Splash _Backgound.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 1.2s var(--ease-out-expo);
}

.splash.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.splash.is-removed {
  display: none;
}

.splash__vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 0%, transparent 30%, rgba(0, 0, 0, 0.8) 100%);
  opacity: 0;
  animation: fadeIn 1.2s var(--ease-out-quart) 0.4s forwards;
}

.splash__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 10;
  padding: var(--space-md);
}

/* Splash icon: Lottie animation (bull skull) */
.splash__icon {
  width: clamp(150px, 24vw, 220px);
  aspect-ratio: 614 / 641;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out-quart) 0.5s forwards;
  filter: brightness(1.05) drop-shadow(0 0 35px var(--red-glow));
}

.splash__icon svg {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.splash__wordmark {
  margin-top: -1.25rem;
  max-width: 550px;
  opacity: 0;
  transform: translateY(15px);
  animation: splashWordmark 1.4s var(--ease-out-expo) 1.2s forwards;
}

.splash__wordmark img {
  width: 100%;
  filter: drop-shadow(0 0 30px var(--red-glow));
}

.splash__text {
  margin-top: var(--space-md);
  opacity: 0;
  transform: translateY(20px);
  animation: splashText 1s var(--ease-out-expo) 2s forwards;
}

.splash__divider {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-deep), transparent);
  margin: var(--space-xs) auto;
}

.splash__subline {
  margin-top: var(--space-xs);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

/* ENTRAR Button */
.splash__enter {
  margin-top: var(--space-lg);
  padding: 1rem 3rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--cream);
  background: transparent;
  border: 1px solid var(--red-deep);
  border-radius: 0;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: splashEnter 1s var(--ease-out-expo) 2.6s forwards;
  transition: all 0.5s var(--ease-out-expo);
}

.splash__enter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
  z-index: -1;
}

.splash__enter:hover,
.splash__enter:focus {
  color: var(--cream);
  border-color: var(--red-deep);
  box-shadow: 0 0 40px var(--red-glow);
  outline: none;
}

.splash__enter:hover::before,
.splash__enter:focus::before {
  transform: scaleX(1);
}

.splash__skip {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-subtle);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
  transition: all 0.3s var(--ease-out-quart);
  opacity: 0;
  animation: fadeIn 0.5s var(--ease-out-quart) 3s forwards;
}

.splash__skip:hover,
.splash__skip:focus {
  color: var(--cream);
  border-color: var(--cream-subtle);
  outline: none;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  background: transparent;
}

.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
}

.nav__logo {
  display: flex;
  align-items: center;
  transition: opacity 0.3s var(--ease-out-quart);
}

.nav__logo img {
  height: 48px;
  width: auto;
  filter: brightness(1.1);
}

.nav__logo:hover {
  opacity: 0.8;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

.nav__links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.6);
  transition: color 0.3s var(--ease-out-quart);
}

.nav__links a:hover,
.nav__links a:focus {
  color: var(--cream);
  outline: none;
}

.nav__social {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Dunkelrot war auf der roten Hero-Wand praktisch unsichtbar */
  color: var(--cream-muted);
  transition: all 0.3s var(--ease-out-quart);
}

.nav__social a:hover,
.nav__social a:focus {
  color: var(--amber);
  transform: scale(1.1);
  outline: none;
}

@media (max-width: 768px) {
  .hero__tagline {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
  }

  .hero__subtitle {
    letter-spacing: 0.25em;
  }

  .hero__content {
    padding: var(--space-md) var(--space-sm);
  }

  .hero__cta {
    margin-top: var(--space-lg);
  }

  .nav {
    padding: var(--space-sm) var(--space-md);
  }

  /* Statt die Links zu verstecken: kompakter setzen und dafuer die
     Social-Icons weglassen - die stehen ohnehin im Footer */
  .nav__links {
    gap: var(--space-sm);
  }

  .nav__links a {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
  }

  .nav__social {
    display: none;
  }

  .nav__logo img {
    height: 34px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   MAIN CONTENT
   ═══════════════════════════════════════════════════════════════════════════════ */
.main {
  opacity: 0;
  transition: opacity 1s var(--ease-out-expo);
}

.main.is-visible {
  opacity: 1;
}

.main[aria-hidden="true"] {
  visibility: hidden;
}

.main[aria-hidden="false"] {
  visibility: visible;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Hero Layers */
.hero__layer {
  position: absolute;
  inset: -2px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Layer 1: Static Background (furthest back) */
.hero__layer--bg {
  z-index: 0;
  background-image: url('../images/Hero_Backgound.webp');
}

/* Layer 1b: Stierschaedel - schwarz, zentriert, sehr dezent vor dem Hintergrund */
.hero__layer--bull {
  z-index: 0;
  background-image: url('../images/Icon.webp');
  background-size: auto 58%;
  background-position: center 44%;
  filter: brightness(0);
  opacity: 0.26;
  mix-blend-mode: multiply;
}

@media (max-width: 768px) {
  .hero__layer--bull {
    background-size: auto 30%;
    background-position: center 30%;
    opacity: 0.22;
  }

  /* Im Hochformat schneidet "cover" die Bildmitte an: Kaktus raus,
     Gringo aus dem linken Bilddrittel in den sichtbaren Ausschnitt holen */
  .hero__layer--kaktus {
    display: none;
  }

  .hero__layer--gringo {
    background-position: 22% center;
  }

  .hero__layer--bg,
  .hero__layer--rauch {
    background-position: 35% center;
  }
}

/* Layer 2: Parallax elements (middle) */
.hero__layer--gringo {
  z-index: 1;
  background-image: url('../images/Hero_Gringo.webp');
  opacity: 0;
  transform: translateY(80px);
  transition: none;
  will-change: transform, opacity;
}

.hero__layer--kaktus {
  z-index: 1;
  background-image: url('../images/Hero_Kaktus.webp');
  opacity: 0;
  transform: translateY(80px);
  transition: none;
  will-change: transform, opacity;
}

/* Layer 2 entrance animation */
.hero__layer--gringo.is-visible {
  animation: heroLayerEnter 1.4s var(--ease-out-expo) 0.3s forwards;
}

.hero__layer--kaktus.is-visible {
  animation: heroLayerEnter 1.4s var(--ease-out-expo) 0.5s forwards;
}

@keyframes heroLayerEnter {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Layer 3: Static Smoke (front) */
.hero__layer--rauch {
  z-index: 2;
  background-image: url('../images/Hero_Rauch.webp');
}

/* Darkening overlay (topmost bg layer) */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(ellipse 85% 65% at 50% 45%,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.3) 55%,
      rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.12) 28%,
      rgba(0, 0, 0, 0.22) 62%,
      rgba(5, 5, 5, 0.92) 100%);
}

.hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-md);
  width: 100%;
  max-width: 1240px;
}

.hero__tagline {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.5);
  margin-bottom: var(--space-md);
}

.hero__title {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 100%;
}

.hero__title-line {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 12vw, 7.75rem);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.98;
  overflow-wrap: break-word;
  text-transform: uppercase;
  color: #f5f0e8;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.35),
    0 6px 18px rgba(0, 0, 0, 0.75),
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 110px rgba(139, 44, 44, 0.45);
}

.hero__subtitle {
  margin-top: var(--space-md);
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.7);
}

.hero__cta {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

/* Hero CTA - Off-white Style */
.hero__cta .btn--primary {
  background: linear-gradient(180deg, #fffdf9 0%, #f5f0e8 60%, #ddd5c8 100%);
  color: var(--black);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow:
    0 20px 40px -20px rgba(0, 0, 0, 0.95),
    0 0 60px -20px rgba(245, 240, 232, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero__cta .btn--primary:hover,
.hero__cta .btn--primary:focus {
  background: #fff;
  color: var(--black);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow:
    0 22px 40px -18px rgba(0, 0, 0, 0.95),
    0 0 70px -15px rgba(245, 240, 232, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}


.hero__scroll {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm);
  color: var(--cream-muted);
  transition: color 0.3s var(--ease-out-quart);
}

.hero__scroll:hover,
.hero__scroll:focus {
  color: var(--amber);
  outline: none;
}

.hero__scroll-text {
  font-size: 0.6875rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.hero__scroll-arrow {
  font-size: 1.25rem;
  animation: scrollBounce 2s infinite;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════════════════ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-primary);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.4s var(--ease-out-expo);
}

.btn--primary {
  background: linear-gradient(180deg, #9c3434 0%, var(--red-deep) 55%, #6f2222 100%);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 18px 35px -18px rgba(0, 0, 0, 0.95),
    0 0 45px -10px rgba(139, 44, 44, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

/* Eine Hover-Regel statt zwei sich widersprechender - der Text stand sonst
   schwarz auf rotem Grund */
.btn--primary:hover,
.btn--primary:focus {
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow:
    0 22px 40px -18px rgba(0, 0, 0, 0.95),
    0 0 60px -10px rgba(139, 44, 44, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  outline: none;
}

.btn--large {
  padding: 1.25rem 3rem;
  font-size: 0.75rem;
}

.btn--small {
  padding: 0.75rem 1.5rem;
  font-size: 0.625rem;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   MARQUEE BANNER
   ═══════════════════════════════════════════════════════════════════════════════ */
.marquee {
  position: relative;
  z-index: var(--z-marquee);
  padding: var(--space-md) 0;
  background: var(--charcoal);
  border-top: 1px solid var(--smoke);
  border-bottom: 1px solid var(--smoke);
  overflow: hidden;
  /* Weiche Kanten + Innenschatten: das Band liegt in der Seite, nicht darauf */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  box-shadow:
    inset 0 22px 30px -24px rgba(0, 0, 0, 0.95),
    inset 0 -22px 30px -24px rgba(0, 0, 0, 0.95);
}

.marquee--tilted {
  transform: rotate(-1deg) scale(1.02);
  margin: -10px 0;
}

.marquee--subtle {
  background: transparent;
  border-color: transparent;
  padding: var(--space-sm) 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee--reverse .marquee__track {
  animation-direction: reverse;
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-right: var(--space-md);
  flex-shrink: 0;
}

.marquee__content span {
  font-family: var(--font-primary);
  font-size: clamp(1.125rem, 3vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
  white-space: nowrap;
}

.marquee__dot {
  color: var(--red-deep) !important;
  font-size: 0.5rem !important;
}

.marquee--subtle .marquee__content span {
  font-size: clamp(0.75rem, 2vw, 1rem);
  color: var(--cream-subtle);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   STORY SECTION - Split Layout
   ═══════════════════════════════════════════════════════════════════════════════ */
.story {
  position: relative;
  padding: var(--space-2xl) 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 25%, rgba(139, 44, 44, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 90% 90%, rgba(212, 165, 116, 0.06) 0%, transparent 60%),
    var(--black);
}

.story__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

@media (max-width: 768px) {
  .story__split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.story__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 70% at 50% 45%, rgba(139, 44, 44, 0.22) 0%, transparent 70%),
    linear-gradient(155deg, #171111 0%, #0a0707 55%, #050505 100%);
}

/* Das Brand-Board liegt wie ein Print auf dem Tisch: leicht gedreht, mit Schlagschatten */
.story__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: rotate(-1.5deg);
  filter: brightness(0.95) contrast(1.06) saturate(1.05);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.6),
    0 30px 60px -25px rgba(0, 0, 0, 0.95),
    0 60px 120px -60px rgba(139, 44, 44, 0.5),
    0 0 0 1px rgba(245, 240, 232, 0.07);
}

@media (max-width: 768px) {
  .story__image {
    padding: var(--space-md);
  }
}

.story__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--charcoal-light) 0%, var(--black) 100%);
  box-shadow: inset 26px 0 60px -40px rgba(0, 0, 0, 0.95);
}

@media (max-width: 768px) {
  .story__content {
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    align-items: center;
  }
}

.story__heading {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--red-deep);
  margin-bottom: var(--space-md);
  text-shadow:
    0 4px 14px rgba(0, 0, 0, 0.8),
    0 0 70px rgba(139, 44, 44, 0.55);
}

.story__divider {
  width: 60px;
  height: 1px;
  background: var(--amber);
  margin-bottom: var(--space-md);
}

.story__text {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.9;
  color: var(--cream-muted);
}

.story__text em {
  color: var(--cream);
  font-style: italic;
}

.story__text--muted {
  margin-top: var(--space-md);
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  line-height: 1.75;
  color: var(--cream-subtle);
  max-width: 46ch;
}

/* Marken-Claim aus dem Branding */
.story__quote {
  margin-top: var(--space-md);
  padding-left: var(--space-sm);
  border-left: 2px solid var(--red-deep);
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.625rem);
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 0 50px rgba(139, 44, 44, 0.45);
}

@media (max-width: 768px) {
  .story__quote {
    padding-left: 0;
    border-left: none;
    border-top: 2px solid var(--red-deep);
    padding-top: var(--space-sm);
  }
}

.story__year {
  margin-top: var(--space-lg);
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-subtle);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.cta {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta__image {
  position: absolute;
  inset: 0;
  background-image: url('../images/Food.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: ctaZoom 20s ease-in-out infinite alternate;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 60% at 50% 50%,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.55) 60%,
      rgba(0, 0, 0, 0.85) 100%),
    linear-gradient(
      180deg,
      rgba(5, 5, 5, 0.95) 0%,
      rgba(5, 5, 5, 0.45) 28%,
      rgba(5, 5, 5, 0.5) 68%,
      rgba(5, 5, 5, 0.95) 100%
    );
}

@keyframes ctaZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

.cta__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
}

.cta__lines {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  margin: var(--space-sm) 0;
}

.cta__lines span {
  width: 40px;
  height: 1px;
  background: var(--cream-subtle);
}

.cta__lines span:nth-child(2) {
  width: 80px;
  background: var(--red-deep);
}

.cta__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7.6vw, 5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--cream);
  padding: var(--space-sm) 0;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.4),
    0 6px 18px rgba(0, 0, 0, 0.8),
    0 22px 50px rgba(0, 0, 0, 0.65),
    0 0 100px rgba(139, 44, 44, 0.4);
}

.cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════════ */
.footer {
  position: relative;
  padding: var(--space-xl) var(--space-md) var(--space-md);
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 100% at 50% 0%, rgba(139, 44, 44, 0.18) 0%, transparent 70%),
    var(--black-pure);
  border-top: 1px solid rgba(245, 240, 232, 0.07);
}

/* Lichtkante oben */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 44, 44, 0.9), transparent);
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: var(--space-lg);
}

.footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
}

.footer__label {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red-deep);
}

.footer__address {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--cream);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer__links a {
  position: relative;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color 0.3s var(--ease-out-quart);
}

.footer__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--red-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
}

.footer__links a:hover,
.footer__links a:focus {
  color: var(--amber);
}

.footer__links a:hover::after,
.footer__links a:focus::after {
  transform: scaleX(1);
}

.footer__btn {
  padding: 0.875rem 2rem;
}

/* Marken-Claim quer ueber die volle Breite */
.footer__claim {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(245, 240, 232, 0.07);
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.6vw, 2rem);
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
  color: var(--cream-muted);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.85), 0 0 40px rgba(139, 44, 44, 0.28);
}

/* Riesiger Schriftzug als Abbinder - laeuft unten leicht aus dem Bild */
.footer__wordmark {
  margin: var(--space-md) auto 0;
  max-width: 1500px;
  padding: 0 var(--space-sm);
}

.footer__wordmark img {
  width: 100%;
  height: auto;
  filter: brightness(1.05) drop-shadow(0 18px 34px rgba(0, 0, 0, 0.85));
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 78%, rgba(0, 0, 0, 0.3) 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 78%, rgba(0, 0, 0, 0.3) 100%);
}

.footer__legal {
  margin-top: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-align: center;
  color: var(--cream-subtle);
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    text-align: center;
  }

  .footer__col {
    align-items: center;
  }

  .footer__links {
    align-items: center;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   MODAL BASE
   ═══════════════════════════════════════════════════════════════════════════════ */
.modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-out-expo);
}

.modal.is-active {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.modal__container {
  position: relative;
  width: 100%;
  max-height: 90vh;
  background: var(--charcoal);
  border: 1px solid var(--stone);
  overflow: hidden;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.5s var(--ease-out-expo);
}

.modal.is-active .modal__container {
  transform: scale(1) translateY(0);
}

.modal__close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--cream-muted);
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  z-index: 20;
  transition: all 0.3s var(--ease-out-quart);
}

.modal__close:hover,
.modal__close:focus {
  color: var(--cream);
  background: var(--red-deep);
  outline: none;
}

.modal__title {
  font-family: var(--font-primary);
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
  padding: var(--space-md);
  border-bottom: 1px solid var(--stone);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   MAP MODAL
   ═══════════════════════════════════════════════════════════════════════════════ */
.modal__container--map {
  max-width: 700px;
}

.map {
  padding: var(--space-md);
}

.map__embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--stone);
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.map__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(0.9) contrast(1.1) brightness(0.7);
}

.map__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  color: var(--cream-muted);
  pointer-events: none;
}

.map__embed iframe:not([src="about:blank"]) + .map__placeholder {
  display: none;
}

.map__info {
  text-align: center;
}

.map__address {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--cream-muted);
  margin-bottom: var(--space-sm);
}

.map__address strong {
  color: var(--cream);
  letter-spacing: 0.15em;
}

.map__copy-feedback {
  font-size: 0.6875rem;
  color: var(--amber);
  min-height: 1.2em;
  margin-top: var(--space-xs);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════════ */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal {
  transform: translateY(30px);
}

.reveal-up {
  transform: translateY(40px);
  transition-delay: calc(var(--delay, 0) * 0.15s);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal.is-visible,
.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   KEYFRAME ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════════ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes splashWordmark {
  from {
    opacity: 0;
    transform: translateY(15px);
    filter: drop-shadow(0 0 0 transparent);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: drop-shadow(0 0 30px var(--red-glow));
  }
}

@keyframes splashText {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes splashEnter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(5px); opacity: 1; }
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

