:root {
  --bg: #060504;
  --surface: #0e0907;
  --ink: #f1d0ad;
  --ink-soft: #d0a57b;
  --line: rgba(216, 168, 118, 0.55);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
}

.menu-page {
  overflow-x: clip;
}

.menu-hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
}

.menu-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.56) contrast(1.08) saturate(1.05);
}

.menu-hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 34%, rgba(182, 110, 56, 0.2), transparent 54%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.78));
}

.menu-hero__topbar,
.menu-hero__content {
  position: relative;
  z-index: 2;
}

.menu-hero__topbar {
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 4vw, 3rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-hero__back {
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 0.42rem 0.84rem;
  font-family: "Cinzel", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  background: rgba(18, 10, 7, 0.56);
}

.menu-hero__city {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.menu-hero__content {
  width: min(760px, 100%);
  padding: clamp(1rem, 4vw, 3rem);
  margin-top: clamp(2rem, 8vh, 6rem);
}

.menu-hero__kicker {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

h1 {
  margin: 0.12rem 0 0.45rem;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.45rem, 6.9vw, 5rem);
  letter-spacing: 0.05em;
  line-height: 0.98;
  max-width: 13ch;
}

.menu-hero__content p:last-child {
  margin: 0;
  font-size: clamp(1.06rem, 2.2vw, 1.45rem);
  max-width: 54ch;
  color: #dfba96;
}

.menu-story {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem) clamp(3rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 10% 0%, rgba(114, 61, 28, 0.24), transparent 30%),
    linear-gradient(180deg, #090706, #070606);
}

.menu-story__smoke {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  opacity: 0.95;
}

.menu-story > *:not(.menu-story__smoke) {
  position: relative;
  z-index: 1;
}

.menu-section {
  max-width: 1240px;
  margin: 0 auto clamp(2rem, 4vw, 3.4rem);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(0.9rem, 2.8vw, 2rem);
  align-items: center;
}

.menu-section--reverse {
  grid-template-columns: 1fr 1.1fr;
}

.menu-section--reverse .menu-section__media {
  order: 2;
}

.menu-section--reverse .menu-section__copy {
  order: 1;
}

.menu-section__media {
  margin: 0;
  border: 1px solid rgba(224, 181, 132, 0.26);
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.42);
  background: #120b08;
}

.menu-section__media > img {
  width: 100%;
  height: min(66vh, 680px);
  object-fit: cover;
  display: block;
}

.menu-section__copy {
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(248, 216, 178, 0.42);
  border-radius: 0.8rem;
  background:
    linear-gradient(165deg, rgba(79, 48, 29, 0.34), rgba(29, 18, 12, 0.3)),
    rgba(28, 18, 12, 0.18);
  backdrop-filter: blur(12px) saturate(1.14) brightness(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.14) brightness(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 233, 206, 0.24),
    inset 0 0 0 1px rgba(255, 220, 179, 0.14),
    0 16px 30px rgba(0, 0, 0, 0.2);
}

.menu-section__kicker {
  margin: 0 0 0.3rem;
  font-family: "Cinzel", Georgia, serif;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
}

h2 {
  margin: 0 0 0.5rem;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  letter-spacing: 0.03em;
}

.menu-section__copy p:last-child {
  margin: 0;
  color: #e2bb95;
  font-size: clamp(1.04rem, 1.8vw, 1.34rem);
}

.menu-section__copy a {
  color: #f2d8bc;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18rem;
}

.menu-section__copy a:hover,
.menu-section__copy a:focus-visible {
  color: #f7e2ca;
}

.carousel {
  position: relative;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  transition: transform 0.72s cubic-bezier(0.22, 0.82, 0.2, 1);
  touch-action: pan-y;
}

.carousel__slide {
  width: 100%;
  flex: 0 0 100%;
  height: min(62vh, 620px);
  object-fit: contain;
  object-position: center;
  background: #0f0907;
  display: block;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(236, 197, 159, 0.65);
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(14, 8, 6, 0.5);
  color: #efca9e;
  cursor: pointer;
  z-index: 2;
}

.carousel__btn--prev {
  left: 0.55rem;
}

.carousel__btn--next {
  right: 0.55rem;
}

.carousel__dots {
  position: absolute;
  left: 50%;
  bottom: 0.7rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.35rem;
}

.carousel__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(235, 192, 148, 0.7);
  background: rgba(8, 8, 8, 0.26);
}

.carousel__dot.is-active {
  background: rgba(235, 192, 148, 0.9);
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.986);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.18, 0.84, 0.25, 1);
}

.reveal.is-inview {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .menu-story__smoke {
    display: none;
  }
}

@media (max-width: 900px) {
  .menu-section,
  .menu-section--reverse {
    grid-template-columns: 1fr;
  }

  .menu-section--reverse .menu-section__media,
  .menu-section--reverse .menu-section__copy {
    order: initial;
  }
}

@media (max-width: 768px) {
  .menu-hero {
    min-height: 72vh;
  }

  .menu-hero__topbar {
    padding: 0.9rem 0.8rem 0;
  }

  .menu-hero__content {
    width: calc(100% - 1rem);
    margin: 1rem auto 0;
    padding: 0.9rem;
    border: 1px solid rgba(224, 181, 132, 0.38);
    border-radius: 0.74rem;
    background: linear-gradient(180deg, rgba(19, 10, 7, 0.55), rgba(12, 7, 5, 0.82));
  }

  .menu-story {
    padding: 1.8rem 0.9rem 3rem;
  }

  .menu-section {
    margin-bottom: 2rem;
    gap: 0.7rem;
  }

  .menu-section,
  .menu-section--reverse {
    display: flex;
    flex-direction: column;
  }

  .menu-section .menu-section__media,
  .menu-section--reverse .menu-section__media,
  .menu-section .menu-section__copy,
  .menu-section--reverse .menu-section__copy {
    width: 100%;
  }

  .menu-section .menu-section__media,
  .menu-section--reverse .menu-section__media {
    order: 1;
  }

  .menu-section .menu-section__copy,
  .menu-section--reverse .menu-section__copy {
    order: 2;
  }

  .menu-section__media > img,
  .carousel__slide {
    height: 42vh;
  }

  .carousel__btn {
    width: 1.8rem;
    height: 1.8rem;
  }
}

.site-credit {
  padding: 0.62rem 0.85rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.42rem;
  background: #050404;
}

.site-credit__logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.site-credit p {
  margin: 0;
  color: rgba(233, 200, 166, 0.95);
  font-family: "Cinzel", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.site-credit__link {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
}

