*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #000000;
  --near-black: #0a0a0a;
  --blood: #8b0000;
  --crimson: #b20000;
  --bone: #d4c5a9;
  --gray: #666;
  --gold: #c9a84c;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Cormorant Garamond', serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--bone);
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

section {
  position: relative;
}

/* ==================== TOP BAR ==================== */

.top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  border-bottom: 1px solid rgba(139, 0, 0, 0.2);
}

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s, text-shadow 0.3s;
}

.top-bar-link svg {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.top-bar-link:hover {
  opacity: 1;
  color: var(--crimson);
  text-shadow: 0 0 6px rgba(178, 0, 0, 0.4);
}

.top-bar-link:hover svg {
  opacity: 1;
  stroke: var(--crimson);
}

@media (max-width: 768px) {
  .top-bar {
    gap: 1.2rem;
    padding: 0.5rem 1rem;
  }

  .top-bar-link {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
  }
}

/* ==================== HERO ==================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

/* Background image */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  filter: saturate(0.5) brightness(0.6);
}

/* Dark vignette overlay */
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 60% at center,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.7) 65%,
    rgba(0, 0, 0, 0.95) 85%,
    #000 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Film grain texture */
.hero-grain {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 2;
  animation: grain-shift 0.5s steps(4) infinite;
}

@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, -1%); }
  50% { transform: translate(1%, 2%); }
  75% { transform: translate(-1%, -2%); }
  100% { transform: translate(2%, 1%); }
}

/* Drifting fog layers */
.hero-fog {
  position: absolute;
  bottom: -20%;
  width: 200%;
  height: 60%;
  pointer-events: none;
  z-index: 3;
  opacity: 0.08;
}

.hero-fog--1 {
  background: radial-gradient(ellipse at 30% 80%, rgba(178, 0, 0, 0.3), transparent 60%),
              radial-gradient(ellipse at 70% 90%, rgba(139, 0, 0, 0.2), transparent 50%);
  animation: fog-drift-1 20s ease-in-out infinite;
}

.hero-fog--2 {
  background: radial-gradient(ellipse at 60% 70%, rgba(178, 0, 0, 0.2), transparent 55%),
              radial-gradient(ellipse at 20% 85%, rgba(139, 0, 0, 0.15), transparent 45%);
  animation: fog-drift-2 25s ease-in-out infinite;
  opacity: 0.06;
}

@keyframes fog-drift-1 {
  0%, 100% { transform: translateX(-5%) translateY(0); }
  50% { transform: translateX(5%) translateY(-5%); }
}

@keyframes fog-drift-2 {
  0%, 100% { transform: translateX(3%) translateY(-3%); }
  50% { transform: translateX(-8%) translateY(2%); }
}

/* Crimson glow behind logo */
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle,
    rgba(178, 0, 0, 0.5) 0%,
    rgba(139, 0, 0, 0.2) 30%,
    transparent 65%
  );
  opacity: 0.2;
  animation: glow-pulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 4;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.15; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.35; transform: translate(-50%, -50%) scale(1.2); }
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 2rem;
}

.hero-logo {
  width: min(550px, 85vw);
  height: auto;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 0 40px rgba(178, 0, 0, 0.4)) drop-shadow(0 0 80px rgba(139, 0, 0, 0.2));
  animation: logo-breathe 6s ease-in-out infinite;
}

@keyframes logo-breathe {
  0%, 100% { filter: drop-shadow(0 0 25px rgba(178, 0, 0, 0.3)) drop-shadow(0 0 60px rgba(139, 0, 0, 0.15)); }
  50% { filter: drop-shadow(0 0 50px rgba(178, 0, 0, 0.5)) drop-shadow(0 0 100px rgba(139, 0, 0, 0.25)); }
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--bone);
  animation: flicker 3s ease-in-out infinite;
  text-shadow: 0 0 4px var(--crimson), 0 0 11px var(--crimson), 0 0 20px rgba(178, 0, 0, 0.3);
}

@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% { opacity: 1; }
  19%, 23%, 56% { opacity: 0.4; }
}

.hero-divider {
  width: 200px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 2rem auto 0;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: var(--gold);
  opacity: 0.5;
  animation: scroll-bounce 2s ease-in-out infinite;
  transition: opacity 0.3s;
}

.scroll-hint:hover {
  opacity: 1;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.8; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-glow { animation: none; opacity: 0.2; }
  .hero-tagline { animation: none; }
  .hero-logo { animation: none; }
  .hero-fog { animation: none; }
  .hero-grain { animation: none; }
  .scroll-hint { animation: none; }
}

/* ==================== NAV ==================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.nav.visible {
  transform: translateY(0);
}

.nav-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover {
  color: var(--crimson);
  text-shadow: 0 0 8px var(--crimson);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem 2rem;
    gap: 1rem;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

/* ==================== ABOUT ==================== */

.about {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-image img {
  border-radius: 2px;
  box-shadow: 0 0 40px rgba(139, 0, 0, 0.2);
}

.section-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--crimson);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.about-text p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.flicker-word {
  color: var(--gold);
  font-style: normal;
  text-shadow: 0 0 4px rgba(201, 168, 76, 0.4);
  animation: candle-flicker 4s ease-in-out infinite;
  cursor: default;
}

@keyframes candle-flicker {
  0%, 100% { opacity: 1; text-shadow: 0 0 4px rgba(201, 168, 76, 0.4); }
  10% { opacity: 0.85; text-shadow: 0 0 2px rgba(201, 168, 76, 0.2); }
  12% { opacity: 1; text-shadow: 0 0 6px rgba(201, 168, 76, 0.5); }
  30% { opacity: 0.9; text-shadow: 0 0 3px rgba(201, 168, 76, 0.3); }
  32% { opacity: 1; text-shadow: 0 0 8px rgba(201, 168, 76, 0.6), 0 0 12px rgba(178, 0, 0, 0.2); }
  50% { opacity: 0.7; text-shadow: 0 0 2px rgba(201, 168, 76, 0.2); }
  52% { opacity: 0.4; text-shadow: none; }
  54% { opacity: 1; text-shadow: 0 0 10px rgba(201, 168, 76, 0.6), 0 0 16px rgba(178, 0, 0, 0.3); }
  70% { opacity: 0.95; text-shadow: 0 0 5px rgba(201, 168, 76, 0.4); }
  85% { opacity: 0.8; text-shadow: 0 0 3px rgba(201, 168, 76, 0.3); }
  87% { opacity: 1; text-shadow: 0 0 6px rgba(201, 168, 76, 0.5); }
}

.about-staff {
  position: relative;
  overflow: hidden;
  max-height: 400px;
}

.about-staff img {
  width: 100%;
  object-fit: cover;
  object-position: center 30%;
  max-height: 400px;
}

.about-staff::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--black), transparent 20%, transparent 80%, var(--black));
  pointer-events: none;
}

@media (max-width: 768px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .art-panel {
    padding: 4rem 1rem;
    margin-bottom: 2rem;
  }
  .art-panel-frame {
    transition-duration: 1.2s;
  }
  .art-panel-glow {
    width: 500px;
    height: 500px;
  }
  .art-panel-quote {
    transition-delay: 1.7s;
  }
}

/* ==================== ART PANEL ==================== */

.art-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6rem 0;
  margin-bottom: 4rem;
  position: relative;
}

.art-panel-frame {
  position: relative;
  z-index: 1;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 2s ease-out;
}

.art-panel.visible .art-panel-frame {
  clip-path: circle(75% at 50% 50%);
}

.art-panel-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.art-panel-quote {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 3rem auto 0;
  padding: 0 1rem;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 1s ease 2.5s, transform 1s ease 2.5s;
}

.art-panel.visible .art-panel-quote {
  opacity: 1;
  transform: translateY(0);
}

.art-panel-quote p {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-style: italic;
  color: var(--bone);
  line-height: 1.8;
  text-shadow: 0 0 8px rgba(178, 0, 0, 0.2);
}

.art-panel-quote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: normal;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.death-pulse {
  color: var(--crimson);
  font-style: normal;
  animation: death-glow 4s ease-in-out infinite;
}

@keyframes death-glow {
  0%, 100% { text-shadow: 0 0 4px rgba(178, 0, 0, 0.3); }
  50% { text-shadow: 0 0 12px rgba(178, 0, 0, 0.7), 0 0 24px rgba(139, 0, 0, 0.3); }
}

.art-panel-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(178, 0, 0, 0.4) 0%,
    rgba(139, 0, 0, 0.15) 30%,
    transparent 65%
  );
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 1.5s ease 2s;
}

.art-panel.visible .art-panel-glow {
  opacity: 1;
  animation: glow-pulse 4s ease-in-out 2s infinite;
}

/* ==================== MENU PREVIEW ==================== */

.menu-preview {
  position: relative;
  padding: 8rem 2rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-preview-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.menu-preview-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.menu-preview-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1000px;
}

.menu-preview-intro {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gray);
  margin-bottom: 3rem;
}

.menu-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.menu-card {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(139, 0, 0, 0.3);
  background: rgba(10, 10, 10, 0.8);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.menu-card:hover {
  border-color: var(--crimson);
  box-shadow: 0 0 20px rgba(178, 0, 0, 0.2);
}

.menu-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}

.menu-card p {
  font-size: 0.95rem;
  color: var(--bone);
}

.menu-card-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-card-items li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.4rem 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--bone);
  border-bottom: 1px solid rgba(102, 102, 102, 0.15);
}

.menu-card-items li:last-child {
  border-bottom: none;
}

.menu-card-items li span:last-child {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--gray);
  margin-left: 1rem;
  flex-shrink: 0;
}

.menu-card-note {
  font-size: 0.8rem;
  color: var(--gray);
  font-style: italic;
  margin-top: 0.5rem;
}

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone);
  padding: 1rem 2.5rem;
  border: 1px solid var(--blood);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.btn:hover {
  background: var(--blood);
  box-shadow: 0 0 20px rgba(178, 0, 0, 0.4);
  color: #fff;
}

/* ==================== EVENTS ==================== */

/* ==================== GALLERY ==================== */

.gallery {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s, filter 0.4s;
  filter: brightness(0.8);
}

.gallery-item:hover img {
  transform: scale(1.03);
  filter: brightness(1);
}

.gallery-item:hover {
  box-shadow: 0 0 15px rgba(178, 0, 0, 0.3);
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item--wide {
    grid-column: span 1;
  }
  .gallery-item--tall {
    grid-row: span 1;
  }
}

/* ==================== CONTACT ==================== */

.contact {
  position: relative;
  padding: 8rem 2rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.contact-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.contact-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contact-item p {
  font-size: 1.05rem;
}

.contact-item a {
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--crimson);
}

.contact-map {
  margin-top: 2rem;
  border: 1px solid rgba(139, 0, 0, 0.3);
}

/* ==================== ART BANNER ==================== */

.art-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.art-banner img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.8);
}

.art-banner::before,
.art-banner::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 30%;
  pointer-events: none;
  z-index: 1;
}

.art-banner::before {
  top: 0;
  background: linear-gradient(to bottom, var(--black), transparent);
}

.art-banner::after {
  bottom: 0;
  background: linear-gradient(to top, var(--black), transparent);
}

/* ==================== FOOTER ==================== */

.footer {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(139, 0, 0, 0.2);
}

.footer-logo {
  width: 60px;
  height: auto;
  margin: 0 auto 1rem;
  opacity: 0.6;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-social a {
  color: var(--gray);
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--crimson);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--gray);
}

.footer-credit {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.5rem;
}

.footer-credit a {
  color: var(--gray);
  transition: color 0.3s;
}

.footer-credit a:hover {
  color: var(--crimson);
}

/* ==================== SCROLL REVEAL ==================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .flicker-word { animation: none; }
  .art-panel-frame {
    clip-path: circle(75% at 50% 50%);
    transition: none;
  }
  .art-panel-glow {
    opacity: 0.15;
    animation: none;
    transition: none;
  }
  .art-panel-quote {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .death-pulse { animation: none; }
}

/* ==================== MENU PAGE ==================== */

.menu-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.menu-page::before {
  content: '';
  position: absolute;
  top: 160px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle,
    rgba(178, 0, 0, 0.5) 0%,
    rgba(139, 0, 0, 0.2) 30%,
    transparent 65%
  );
  opacity: 0.2;
  animation: glow-pulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.menu-page-header {
  text-align: center;
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 1;
}

.menu-page-header .hero-logo {
  width: 200px;
  margin: 0 auto 1rem;
}

.menu-page-actions {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.menu-section {
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.menu-section h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--crimson);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(139, 0, 0, 0.3);
}

.menu-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(102, 102, 102, 0.15);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.35rem;
}

.menu-item-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
}

.menu-price {
  font-family: var(--font-heading);
  color: var(--bone);
  font-size: 1.25rem;
}

.menu-item p {
  font-size: 1.15rem;
  color: var(--gray);
  font-style: italic;
}

.menu-note {
  font-size: 0.95rem;
  color: var(--crimson);
  margin-top: 0.5rem;
}
