
:root {
  --bg: #070707;
  --panel: #101010;
  --panel-2: #171717;
  --gold: #e1b347;
  --gold-soft: #f2d38a;
  --red: #86181a;
  --text: #f7f2e8;
  --muted: #c5bbac;
  --line: rgba(225, 179, 71, 0.22);
  --shadow: 0 18px 45px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(134,24,26,.18), transparent 30%),
    linear-gradient(180deg, #050505 0%, #080808 32%, #0c0c0c 100%);
  color: var(--text);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(4,4,4,.45), rgba(4,4,4,.82)),
    url('assets/images/menu-page-1.png') center/cover no-repeat;
  border-bottom: 1px solid var(--line);
}
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.65) 70%, rgba(0,0,0,.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 42px 0 36px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-soft);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: .95rem;
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  color: var(--gold);
  letter-spacing: 1px;
}
.subtitle {
  margin: 10px 0 18px;
  font-size: clamp(1.1rem, 2.4vw, 1.8rem);
  color: #fff;
}
.intro {
  margin: 0 auto 24px;
  max-width: 760px;
  line-height: 1.7;
  color: var(--muted);
  font-size: 1rem;
}
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.quick-links a {
  background: rgba(225,179,71,.10);
  border: 1px solid rgba(225,179,71,.28);
  color: var(--gold-soft);
  padding: 10px 14px;
  border-radius: 999px;
  transition: .25s ease;
}
.quick-links a:hover { background: rgba(225,179,71,.18); transform: translateY(-2px); }

main { padding: 56px 0 70px; }
.section-heading { margin-bottom: 22px; }
.section-heading span {
  display: inline-block;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .82rem;
  margin-bottom: 8px;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--gold);
}

.poster-gallery,
.menu-section {
  margin-bottom: 58px;
  padding: 26px;
  background: rgba(12,12,12,.82);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.poster-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.poster-card {
  margin: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.poster-card img { width: 100%; height: auto; }
.poster-card figcaption {
  padding: 12px 14px 16px;
  color: var(--muted);
  text-align: center;
}

.category-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 24px;
  align-items: start;
}
.category-layout.reverse { grid-template-columns: 1fr 420px; }
.category-layout.reverse .category-image { order: 2; }
.category-layout.reverse .menu-columns { order: 1; }
.category-image {
  position: sticky;
  top: 20px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.category-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.menu-columns {
  display: grid;
  gap: 18px;
}
.one-col { grid-template-columns: 1fr; }
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.four-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.menu-card {
  background: linear-gradient(180deg, rgba(134,24,26,.22), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 16px;
}
.menu-card h3 {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 1.1rem;
}
.menu-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}
.menu-card li {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px dashed rgba(225,179,71,.16);
  padding-bottom: 7px;
}
.menu-card li span {
  color: #f6f0e4;
  flex: 1;
  line-height: 1.45;
}
.menu-card li strong {
  color: var(--gold);
  white-space: nowrap;
  font-size: .96rem;
}

.footer {
  padding: 30px 0 45px;
  text-align: center;
  border-top: 1px solid var(--line);
  background: #080808;
}
.footer h2 { color: var(--gold); margin-bottom: 8px; }
.footer p { color: var(--muted); margin: 6px 0; }
.footer .small { font-size: .94rem; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .category-layout,
  .category-layout.reverse {
    grid-template-columns: 1fr;
  }
  .category-layout.reverse .category-image,
  .category-layout.reverse .menu-columns { order: initial; }
  .category-image { position: relative; top: auto; }
  .three-col, .two-col, .four-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .poster-grid,
  .three-col,
  .two-col,
  .four-col { grid-template-columns: 1fr; }
  .hero { min-height: 72vh; }
  .poster-gallery,
  .menu-section { padding: 18px; border-radius: 18px; }
  .quick-links a { font-size: .92rem; }
}
