/* ============================================================
   ESSE — Hero
   Wortmarke in zwei Ebenen zerschnitten, Burger dazwischen.
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding-top: 6vh;
  isolation: isolate;
}

.hero__smoke {
  position: absolute;
  inset: -10% -10% 30% -10%;
  z-index: 0;
  mix-blend-mode: screen;
  opacity: 0.07;
  pointer-events: none;
}
.hero__smoke img { width: 100%; height: 100%; object-fit: cover; }

.hero__scrim {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 32vh;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 0%, rgba(18, 16, 14, 0.55) 55%, var(--bg) 100%);
}

.hero__wordmark {
  position: relative;
  width: 100%;
  height: min(30vw, 50vh);
  display: grid;
}
.hero__word {
  grid-area: 1 / 1;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-variation-settings: 'opsz' 144, 'SOFT' 0, 'WONK' 0;
  font-size: var(--text-wordmark);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  white-space: nowrap;
}
.hero__word--back { z-index: 1; }
.hero__word--front {
  z-index: 3;
  clip-path: inset(0 0 56% 0);
}

.hero__burger {
  grid-area: 1 / 1;
  z-index: 2;
  align-self: center;
  justify-self: center;
  position: relative;
  width: min(36vw, 48vh);
  margin-top: 3vh;
}
.hero__burger .cutout__img img {
  width: 100%;
  height: auto;
}
.hero__burger-glow {
  position: absolute;
  inset: -10%;
  z-index: -1;
  background: radial-gradient(ellipse at 50% 60%, rgba(0, 0, 0, 0.55) 0%, transparent 70%);
  pointer-events: none;
}

.hero__tagline {
  position: absolute;
  bottom: 15vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: max-content;
  max-width: 90vw;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-align: center;
  font-size: var(--text-mono);
  /* Kraeftiger, mehrschichtiger Schlagschatten statt nur weichem Glow: muss auch gegen
     helle Bildstellen (z.B. die Oberseite des Buns) zuverlaessig lesbar bleiben. */
  text-shadow:
    0 0 3px var(--bg),
    0 0 8px var(--bg),
    0 2px 4px rgba(0, 0, 0, 0.95),
    0 4px 20px rgba(0, 0, 0, 0.9);
}

.hero__emberline {
  position: absolute;
  bottom: 8vh;
  left: 50%;
  width: min(38rem, 60vw);
  height: 2px;
  transform: translateX(-50%);
  background: var(--grad-ember);
  box-shadow: var(--glow-ember);
  border-radius: 2px;
  z-index: 4;
}

.hero__scrollhint {
  position: absolute;
  bottom: var(--space-6);
  right: var(--gutter);
  z-index: 4;
  color: var(--muted);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  opacity: 0;
}

@media (max-width: 768px) {
  .hero { padding-top: 10vh; }
  .hero__wordmark { height: min(38vw, 30vh); }
  .hero__burger { width: 46vw; margin-top: 2vh; }
  .hero__tagline { max-width: 26ch; line-height: 1.6; }
  .hero__scrollhint { display: none; }
}
