/* ═══════════════════════════════════════════════════
   EMILIO — MENU PAGE STYLES
   ═══════════════════════════════════════════════════ */

/* ── Hero ── */
.menu-hero {
  position: relative;
  height: 52vh;
  min-height: 360px;
  max-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.menu-hero__bg {
  position: absolute;
  inset: 0
}

.menu-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroScale 22s var(--ease) infinite alternate
}

.menu-hero__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(11, 11, 11, .35) 0%,
      rgba(11, 11, 11, .2) 40%,
      rgba(11, 11, 11, .65) 75%,
      rgba(11, 11, 11, .95) 100%)
}

.menu-hero__body {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeUp 1s var(--ease-out)
}

.menu-hero__kicker {
  font-family: var(--ff-display);
  font-size: 13px;
  font-style: italic;
  letter-spacing: .2em;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 12px
}

.menu-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(52px, 10vw, 100px);
  font-weight: 300;
  color: #fff;
  line-height: .9;
  letter-spacing: -.02em;
  margin-bottom: 12px
}

.menu-hero__sub {
  font-family: var(--ff-display);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 300;
  color: rgba(255, 255, 255, .55)
}

/* ── Sticky menu nav ── */
.menu-nav {
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  position: relative;
  z-index: 100;
  transition: box-shadow .3s var(--ease)
}

.menu-nav.is-stuck {
  position: sticky;
  top: 62px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .4)
}

.menu-nav__inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 8px
}

.menu-nav__inner::-webkit-scrollbar {
  display: none
}

.menu-nav__link {
  flex-shrink: 0;
  padding: 16px 22px;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  transition: color .25s, box-shadow .25s;
  white-space: nowrap
}

.menu-nav__link:hover {
  color: rgba(255, 255, 255, .7)
}

.menu-nav__link.is-active {
  color: #fff;
  box-shadow: inset 0 -2px 0 var(--burgundy)
}

/* ── Menu Main ── */
.menu-main {
  background: var(--black);
  padding: 0 0 40px
}

/* ── Category ── */
.menu-cat {
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .04)
}

.menu-cat:last-of-type {
  border-bottom: none
}

.menu-cat__head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 44px
}

.menu-cat__num {
  font-family: var(--ff-display);
  font-size: 48px;
  font-weight: 300;
  color: rgba(255, 255, 255, .06);
  line-height: 1
}

.menu-cat__title {
  font-family: var(--ff-display);
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.01em
}

.menu-cat__sub {
  font-family: var(--ff-display);
  font-size: 13px;
  font-style: italic;
  color: rgba(255, 255, 255, .3);
  letter-spacing: .06em;
  margin-top: 2px
}

/* ── Menu card grid ── */
.menu-cat__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px
}

.menu-card {
  padding: 24px 28px;
  background: rgba(255, 255, 255, .02);
  border-radius: 6px;
  transition: background .3s var(--ease), transform .3s var(--ease)
}

.menu-card:hover {
  background: rgba(255, 255, 255, .04);
  transform: translateY(-2px)
}

.menu-card__top {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px
}

.menu-card__name {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
  flex: 1
}

.menu-card__price {
  font-family: var(--ff-body);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: .03em
}

.menu-card__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .35);
  line-height: 1.65
}

/* ── Wine section ── */
.wine-section {
  margin-bottom: 48px
}

.wine-section:last-child {
  margin-bottom: 0
}

.wine-section__title {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.wine-section__title span {
  font-style: italic;
  color: rgba(255, 255, 255, .3);
  font-weight: 300
}

/* ── Bottom CTA ── */
.menu-cta {
  text-align: center;
  padding: 80px 0 40px;
  max-width: 520px;
  margin: 0 auto
}

.menu-cta__tag {
  font-family: var(--ff-display);
  font-size: 13px;
  font-style: italic;
  letter-spacing: .15em;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 12px
}

.menu-cta__title {
  font-family: var(--ff-display);
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 300;
  color: #fff;
  margin-bottom: 16px
}

.menu-cta__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.7;
  margin-bottom: 32px
}

.menu-cta__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

/* ═══════════ PHOTO BANNERS ═══════════ */
.menu-photo {
  position: relative;
  height: 280px;
  margin: 16px -clamp(24px, 5vw, 48px);
  overflow: hidden;
  border-radius: 0
}

.menu-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s linear
}

.menu-photo:hover img {
  transform: scale(1.06)
}

.menu-photo__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(11, 11, 11, .7) 0%,
      rgba(11, 11, 11, .4) 50%,
      rgba(11, 11, 11, .7) 100%)
}

.menu-photo__quote {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  font-family: var(--ff-display);
  font-size: clamp(18px, 2.5vw, 26px);
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .03em;
  white-space: nowrap;
  z-index: 2
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 768px) {
  .menu-cat__grid {
    grid-template-columns: 1fr
  }

  .menu-cat__head {
    gap: 14px
  }

  .menu-cat__num {
    font-size: 36px
  }

  .menu-nav__link {
    padding: 14px 16px;
    font-size: 10px
  }

  .menu-card {
    padding: 18px 20px
  }

  .menu-card__name {
    font-size: 17px
  }

  .menu-hero {
    height: 40vh;
    min-height: 280px
  }

  .menu-cta__btns {
    flex-direction: column;
    align-items: center
  }
}

@media (max-width: 480px) {
  .menu-card__top {
    flex-direction: column;
    gap: 4px
  }

  .menu-card__price {
    font-size: 16px
  }
}
