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

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f7f3ee;
  background: radial-gradient(circle at top, #28232b 0, #050308 48%, #050308 100%);
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #f7f3ee;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -10%;
  background-image: url("https://images.pexels.com/photos/262978/pexels-photo-262978.jpeg?auto=compress&cs=tinysrgb&w=1200");
  background-size: cover;
  background-position: center;
  filter: blur(2px) brightness(0.4);
  transform: scale(1.05);
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.85));
  z-index: -1;
}

.hero-content {
  padding: 3rem 1.5rem 4rem;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e0d1c0;
  margin-bottom: 1.8rem;
}

.hero-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-nav a {
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f7f3ee;
  border: 1px solid rgba(247,243,238,0.35);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  backdrop-filter: blur(10px);
  background: rgba(5,3,8,0.35);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.hero-nav a:hover {
  background: rgba(247,243,238,0.1);
  border-color: #f7f3ee;
  transform: translateY(-1px);
}

.wrapper {
  max-width: 960px;
  margin: -2rem auto 3rem;
  padding: 0 1.5rem 3rem;
}

.menu-section {
  background: rgba(18,10,20,0.9);
  border-radius: 18px;
  padding: 1.75rem 1.6rem 1.9rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.04);
}

.section-header {
  margin-bottom: 1.4rem;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f4e4d3;
  margin-bottom: 0.15rem;
}

.section-header p {
  font-size: 0.9rem;
  color: #cbbcad;
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.item-card {
  display: grid;
  grid-template-columns: minmax(0, 3fr) auto;
  align-items: baseline;
  gap: 0.75rem 1.5rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
}

.item-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.item-text h3 {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f7f3ee;
  margin-bottom: 0.1rem;
}

.desc {
  font-size: 0.86rem;
  color: #d3c6b8;
}

.item-meta {
  text-align: right;
  white-space: nowrap;
}

.item-meta.vertical {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.price {
  font-size: 0.96rem;
  font-weight: 500;
  color: #f4ddc1;
}

.price.secondary {
  font-size: 0.8rem;
  color: #d9c7b1;
}

.info-section {
  margin-top: 1.8rem;
}

.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 1.2rem;
}

.info-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: #f7f3ee;
}

.info-card p,
.info-card ul {
  font-size: 0.9rem;
  color: #d3c6b8;
}

.info-card ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.footer {
  text-align: center;
  padding: 1rem 1.5rem 2rem;
  font-size: 0.8rem;
  color: #a8957f;
  border-top: 1px solid rgba(255,255,255,0.04);
  background: radial-gradient(circle at top, #110d14 0, #050308 55%);
}

@media (max-width: 640px) {
  .menu-section {
    padding: 1.4rem 1.15rem 1.5rem;
  }

  .item-card {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .info-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
