﻿:root {
  --bg: #0f0b0a;
  --bg-accent: #1b1110;
  --ink: #1b1411;
  --muted-dark: #5a4a44;
  --muted-light: #c9b8af;
  --brand: #d11f1a;
  --brand-dark: #8a1410;
  --accent: #fdbc2c;
  --dark: #050403;
  --card: #f4f4f4;
  --card-strong: #ececec;
  --shadow: 0 18px 40px rgba(5, 4, 3, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  color: var(--muted-light);
  background: radial-gradient(circle at top, #231313, var(--bg) 60%);
  overflow-x: hidden;
}

.page {
  min-height: 100vh;
  position: relative;
}

.page::before,
.page::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(209, 31, 26, 0.18);
  border-radius: 50%;
  z-index: 0;
}

.page::before {
  top: -180px;
  right: -140px;
}

.page::after {
  bottom: -220px;
  left: -180px;
}

.site-header,
.site-nav,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header,
.site-nav,
.hero,
.section,
.site-footer {
  animation: fade-up 0.8s ease both;
}

.site-nav {
  animation-delay: 0.1s;
}

.hero {
  animation-delay: 0.2s;
}

section.section:nth-of-type(2) {
  animation-delay: 0.3s;
}

section.section:nth-of-type(3) {
  animation-delay: 0.4s;
}

section.section:nth-of-type(4) {
  animation-delay: 0.5s;
}

.menu-card,
.deal-card,
.contact-card {
  animation: fade-up 0.7s ease both;
}

.menu-card:nth-child(1),
.deal-card:nth-child(1),
.contact-card:nth-child(1) {
  animation-delay: 0.05s;
}

.menu-card:nth-child(2),
.deal-card:nth-child(2),
.contact-card:nth-child(2) {
  animation-delay: 0.12s;
}

.menu-card:nth-child(3),
.deal-card:nth-child(3),
.contact-card:nth-child(3) {
  animation-delay: 0.2s;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 20px 16px;
  z-index: 6;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-mark {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 40px;
  letter-spacing: 2px;
  color: var(--brand);
}

.brand-sub {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted-light);
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 24px rgba(207, 43, 30, 0.35);
}

.btn.primary:hover {
  box-shadow: 0 16px 28px rgba(207, 43, 30, 0.35),
    0 0 0 2px rgba(253, 188, 44, 0.25);
}

.btn.ghost {
  border: 2px solid var(--brand);
  color: var(--brand);
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.site-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0 20px 24px;
}

.site-nav a {
  text-decoration: none;
  color: #fff;
  background: var(--dark);
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 600;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
}


.site-nav a:hover {
  border-color: rgba(253, 188, 44, 0.6);
  color: #fff3d5;
}

main {
  padding: 0 20px 40px;
}

.hero {
  display: grid;
  gap: 20px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(160deg, #1b1110 0%, #2a1513 100%);
  box-shadow: var(--shadow);
  color: #f6f1ed;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 10px;
}

.hero-text h1 {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 38px;
  letter-spacing: 1px;
  margin: 0 0 12px;
}

.hero-text p {
  margin: 0 0 16px;
  color: var(--muted-light);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-note {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
}

.hero-media {
  display: grid;
  gap: 16px;
}

.hero-media img,
.menu-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  max-height: 320px;
}

.hero-card {
  background: #120a09;
  border-radius: 20px;
  padding: 18px;
  color: #fff;
  border: 1px solid rgba(209, 31, 26, 0.45);
}

.hero-card h2 {
  margin-top: 0;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.section {
  margin-top: 32px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(245, 245, 245, 0.98);
  box-shadow: var(--shadow);
  color: var(--ink);
  border: 1px solid rgba(209, 31, 26, 0.18);
}

.section-header {
  margin-bottom: 18px;
  border-left: 3px solid rgba(209, 31, 26, 0.6);
  padding-left: 12px;
}

.section-header h2 {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 34px;
  margin: 0 0 8px;
  color: var(--dark);
}

.section-header p {
  margin: 0;
  color: var(--muted-dark);
}

.menu-grid,
.deal-grid,
.contact-grid {
  display: grid;
  gap: 20px;
}

.menu-card,
.deal-card,
.contact-card {
  background: var(--card);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(209, 31, 26, 0.25);
  color: var(--ink);
}

.menu-card h3,
.deal-card h3,
.contact-card h3 {
  margin-top: 0;
  font-size: 22px;
  color: var(--dark);
}

.menu-note {
  color: var(--muted-dark);
  font-size: 14px;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
  color: var(--ink);
}

.menu-list.compact li {
  font-weight: 500;
  font-size: 14px;
}

.menu-columns {
  display: grid;
  gap: 16px;
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
}

.pill-list li {
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(209, 31, 26, 0.25);
}

.menu-image {
  margin-top: 24px;
  text-align: center;
}

.menu-image .menu-note {
  margin-top: 10px;
}

.deal-block {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(90, 79, 69, 0.15);
}

.deal-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.deal-block h4 {
  margin: 0 0 6px;
}

.deal-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 6px 0 0;
}

.deal-price::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 8px;
  transform: translateY(-1px);
}

.section-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted-dark);
}

.contact-grid p {
  margin: 8px 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: var(--muted-dark);
}

.site-footer {
  padding: 32px 20px 50px;
  text-align: center;
  color: var(--muted-light);
  font-weight: 600;
}

.site-header .btn.ghost,
.hero .btn.ghost {
  border-color: #f6f1ed;
  color: #f6f1ed;
}

@media (min-width: 720px) {
  .site-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 40px 40px 20px;
  }

  .site-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0 40px 30px;
  }

  main {
    padding: 0 40px 60px;
  }

  .hero {
    grid-template-columns: 1.2fr 1fr;
    padding: 32px;
  }

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

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

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

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

@media (min-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-text h1 {
    font-size: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
