:root {
  color-scheme: light;
  --bg: #f6f2ea;
  --bg-accent: #fff9f2;
  --text: #1f1d1a;
  --muted: #6f655c;
  --accent: #c26b41;
  --accent-dark: #8f4c2d;
  --card: #ffffff;
  --shadow: rgba(15, 12, 10, 0.08);
  --border: rgba(52, 41, 34, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Cairo", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, #fff7ec 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, #f4d8c7 0%, transparent 45%),
    linear-gradient(180deg, var(--bg) 0%, #fdfbf7 55%, #f7f3ee 100%);
  min-height: 100vh;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 40px clamp(20px, 6vw, 64px);
  background: linear-gradient(135deg, #f4d6c3 0%, #fbe9d9 50%, #f7f0e7 100%);
  border-bottom: 1px solid var(--border);
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 12px;
  color: var(--accent-dark);
  margin: 0 0 12px;
  font-weight: 700;
}

.hero__title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 52px);
  margin: 0 0 8px;
}

.hero__subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 520px;
}

.hero__badge {
  width: 80px;
  height: 80px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px var(--shadow);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--accent-dark);
  font-family: "Playfair Display", "Times New Roman", serif;
}

.hero__badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.page {
  padding: 32px clamp(20px, 6vw, 64px) 48px;
}

.status {
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: var(--bg-accent);
  border: 1px dashed var(--border);
  color: var(--muted);
}

.menu {
  display: grid;
  gap: 24px;
}

.category {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 18px 40px var(--shadow);
}

.category__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--accent-dark);
}

.items {
  display: grid;
  gap: 16px;
}

.item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius-md);
  background: #fffdf9;
  border: 1px solid var(--border);
}

.item__image {
  width: 96px;
  height: 96px;
  border-radius: 14px;
  background: #f4ede6;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 12px;
  overflow: hidden;
}

.item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item__name {
  margin: 0 0 6px;
  font-weight: 700;
}

.item__desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.item__price {
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.footer {
  padding: 24px clamp(20px, 6vw, 64px) 40px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 720px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .item {
    grid-template-columns: 72px 1fr;
  }

  .item__price {
    grid-column: 2;
    justify-self: flex-start;
  }
}
