/* ═══ MENU SECTION ═══ */
.menu-section {
  background: linear-gradient(180deg, #070707 0%, #090909 54%, #050505 100%);
  padding: 40px 0 90px;
}

.menu-header {
  text-align: center;
  padding: 0 64px 60px;
}

/* Category pills */
.menu-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 40px 10px;
  margin-bottom: 10px;
}

.menu-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.menu-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(201, 168, 76, 0.25), transparent 52%);
  transform: translateX(-110%);
  transition: transform 0.35s;
  z-index: 0;
}

.menu-pill span {
  position: relative;
  z-index: 1;
}

.menu-pill:hover,
.menu-pill.active {
  color: #000;
  border-color: rgba(201, 168, 76, 0.5);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.18), rgba(255, 255, 255, 0.05));
}

.menu-pill:hover::before,
.menu-pill.active::before {
  transform: translateX(0);
}

/* Menu panels */
.menu-panel {
  display: none;
  animation: panelIn 0.45s ease both;
}

.menu-panel.active {
  display: block;
}

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

/* Category hero image bar */
.cat-hero {
  position: relative;
  height: 260px;
  overflow: hidden;
  margin-bottom: 0;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.cat-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.38) saturate(0.52);
  transition: transform 0.5s ease;
  transform: translateY(calc(var(--hero-offset) * 0.05px));
}

.cat-hero:hover img {
  transform: scale(1.02) translateY(calc(var(--hero-offset) * 0.05px));
}

.cat-hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}

.cat-hero-label {
  font-size: 0.66rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.cat-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  color: var(--off-white);
}

/* Menu grid layout */
.menu-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: transparent;
}

.menu-col {
  background: rgba(14, 14, 14, 0.85);
  padding: 52px 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.col-header {
  margin-bottom: 32px;
}

.col-cat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.col-note {
  font-size: 0.76rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 18px;
}

.col-rule {
  width: 40px;
  height: 1px;
  background: rgba(201, 168, 76, 0.45);
}

.dish {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.25s ease, transform 0.25s ease;
}

.dish:last-child {
  border-bottom: none;
}

.dish:hover {
  background: rgba(201, 168, 76, 0.06);
  transform: translateX(6px);
}

.dish-info {
  flex: 1;
}

.dish-name {
  font-size: 0.94rem;
  color: var(--off-white);
  font-weight: 500;
  margin-bottom: 4px;
}

.dish-desc {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.6;
}

.dish-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  color: var(--gold);
  white-space: nowrap;
  font-weight: 400;
}

.dish-badge {
  font-size: 0.58rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(139, 26, 26, 0.28);
  color: #e08080;
  border: 1px solid rgba(139, 26, 26, 0.38);
  padding: 3px 9px;
  margin-left: 8px;
  vertical-align: middle;
}

.price-variants {
  text-align: right;
}

.price-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.88rem;
  color: var(--gold);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.price-line-label {
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

/* Two-col sub grid */
.menu-body-2col {
  grid-template-columns: 1fr 1fr;
}

.menu-body-full {
  grid-template-columns: 1fr;
}

/* ═══ GALLERY STRIP ═══ */
.gallery-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  height: 420px;
}

.gallery-cell {
  overflow: hidden;
  position: relative;
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.65);
  transition: filter 0.5s, transform 0.6s;
}

.gallery-cell:hover img {
  filter: brightness(0.9) saturate(0.85);
  transform: scale(1.04);
}

.gallery-cell-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 6, 6, 0.7) 0%, transparent 50%);
  pointer-events: none;
}

.gallery-label {
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--off-white);
  letter-spacing: 2px;
}
