/* Pizzeria Da Vinci — motyw (baza: /assets/demo.css) */
:root {
  --ink: #1c1512;
  --ink-soft: #6b5b51;
  --paper: #fffdfa;
  --bg: #fbf6ef;
  --line: #ebe0d2;
  --brand: #c4341f;
  --brand-dark: #982314;
  --brand-soft: #fceee9;
  --accent: #1f7a4a;
  --font-head: "Fraunces", "Iowan Old Style", Georgia, serif;
  --head-weight: 600;
  --radius-lg: 20px;
  --hero-veil: linear-gradient(180deg, rgba(20,8,5,.62), rgba(20,8,5,.34) 40%, rgba(20,8,5,.86));
}
.brand-mark { border-radius: 50%; font-family: var(--font-head); }
.eyebrow::before { content: "🍅 "; }

/* wstążka „prosto z pieca" */
.oven-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 40px;
  padding: 18px 24px; border-radius: 999px;
  background: var(--brand); color: #fff; font-size: .9rem; font-weight: 600;
}
.oven-strip li { display: flex; align-items: center; gap: 8px; }

/* menu dnia */
.daily {
  display: grid; grid-template-columns: auto 1fr auto; gap: 8px 26px; align-items: center;
  background: linear-gradient(135deg, #1c1512, #33201a); color: #fff;
  border-radius: var(--radius-lg); padding: 30px 34px;
}
.daily-badge {
  grid-row: span 2; width: 78px; height: 78px; border-radius: 50%; display: grid; place-items: center;
  background: var(--brand); font-family: var(--font-head); font-size: .82rem; text-align: center; line-height: 1.15; font-weight: 700;
}
.daily h3 { color: #fff; }
.daily p { color: rgba(255,255,255,.75); font-size: .95rem; }
.daily-price { grid-row: span 2; font-family: var(--font-head); font-size: 2.4rem; color: #ffcf6b; white-space: nowrap; }
@media (max-width: 640px) {
  .daily { grid-template-columns: auto 1fr; text-align: left; }
  .daily-price { grid-row: auto; grid-column: 1 / -1; font-size: 2rem; }
}
