.public-page {
  background: var(--dark);
}

.page-hero {
  --page-hero-image: url('/images/hero/queens-feast-hero.png');
  position: relative;
  min-height: min(78svh, 52rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: #0b1420;
}

.page-hero::before,
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
}

.page-hero::before {
  z-index: -2;
  background-image: var(--page-hero-image);
  background-position: center;
  background-size: cover;
  animation: pageHeroReveal 1.2s ease both;
}

.page-hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 12, 19, 0.94) 0%, rgba(6, 12, 19, 0.68) 42%, rgba(6, 12, 19, 0.12) 76%),
    linear-gradient(0deg, rgba(6, 12, 19, 0.72), transparent 55%);
}

.page-hero--menu {
  --page-hero-image: url('/images/menu/grillplatte-4-restaurant.jpg');
}

.page-hero--reservation {
  --page-hero-image: url('/images/menu/vegan-platte-4-restaurant.jpg');
}

.page-hero--reservation::before {
  background-position: right center;
  background-size: auto 100%;
  background-repeat: no-repeat;
}

.page-hero--events {
  --page-hero-image: url('/images/menu/queen-spezial-kabab-event.jpg');
}

.page-hero--events::before {
  background-position: right center;
  background-size: auto 100%;
  background-repeat: no-repeat;
}

.page-hero__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: clamp(9rem, 18vh, 12rem) clamp(1.5rem, 8vw, 8.5rem) clamp(3.5rem, 8vh, 6rem);
}

.page-hero__copy {
  width: min(100%, 49rem);
}

.page-eyebrow {
  margin: 0 0 1.15rem;
  color: rgba(248, 246, 241, 0.68);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 13ch;
  margin: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(3.2rem, 7.3vw, 7.2rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.page-hero__lead {
  max-width: 57ch;
  margin: 1.6rem 0 0;
  color: rgba(248, 246, 241, 0.76);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.page-hero__rule {
  width: min(10rem, 34vw);
  height: 1px;
  margin-top: 1.7rem;
  background: rgba(248, 246, 241, 0.62);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  padding: 5rem 0 3rem;
}

.section-intro h2 {
  margin: 0;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: clamp(2.2rem, 4.8vw, 4.8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-intro p:last-child {
  max-width: 54ch;
  margin: 0;
  color: var(--text-muted);
}

@keyframes pageHeroReveal {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 42rem;
  }

  .page-hero::before {
    background-position: 58% center;
  }

  .page-hero--reservation::before {
    background-position: 54% center;
    background-size: cover;
  }

  .page-hero--events::before {
    background-position: 52% center;
    background-size: cover;
  }

  .page-hero::after {
    background: linear-gradient(90deg, rgba(6, 12, 19, 0.9), rgba(6, 12, 19, 0.36));
  }

  .page-hero__inner {
    padding: 8.5rem 1.25rem 3.2rem;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 3.5rem 0 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero::before {
    animation: none;
  }
}
