* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #24130b;
  background: #fff7e8;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 247, 232, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(85, 42, 16, 0.12);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
  color: #d82716;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 800;
}

.nav-links a {
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  color: #d82716;
  transform: translateY(-1px);
}

.nav-cta {
  background: #24130b;
  color: #fff7e8;
  padding: 12px 18px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: #d82716;
  color: white;
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 900;
}

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 52px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: #d82716;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h3 {
  letter-spacing: -0.03em;
}

.hero-text {
  max-width: 610px;
  font-size: 1.18rem;
  line-height: 1.65;
  color: #6b4b33;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button,
.add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  min-height: 48px;
  font-weight: 900;
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.add-button:hover {
  transform: translateY(-2px);
}

.primary,
.add-button {
  background: #d82716;
  color: white;
  box-shadow: 0 12px 24px rgba(216, 39, 22, 0.22);
}

.secondary {
  background: white;
  color: #24130b;
  box-shadow: inset 0 0 0 2px rgba(36, 19, 11, 0.14);
}

.hero-card {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  background: #ffd34d;
  box-shadow: 0 24px 70px rgba(80, 39, 9, 0.18);
  transform: rotate(2deg);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
}

.deal-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background: #24130b;
  color: white;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.deal-badge span {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.deal-badge strong {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.features {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.features div {
  padding: 24px;
  border-radius: 24px;
  background: white;
  box-shadow: 0 14px 40px rgba(84, 42, 14, 0.08);
}

.features strong {
  display: block;
  font-size: 2rem;
  letter-spacing: -0.06em;
}

.features span {
  color: #76543a;
  font-weight: 800;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0;
}

.section-heading {
  max-width: 690px;
  margin-bottom: 32px;
}

.section-heading p:not(.eyebrow) {
  color: #6b4b33;
  line-height: 1.65;
  font-size: 1.05rem;
}

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

.menu-card {
  overflow: hidden;
  border-radius: 30px;
  background: white;
  box-shadow: 0 18px 50px rgba(84, 42, 14, 0.11);
}

.menu-card img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.menu-card-body {
  padding: 24px;
}

.item-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.item-title h3 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.item-title span {
  color: #d82716;
  font-weight: 900;
}

.menu-card p {
  color: #6b4b33;
  line-height: 1.55;
}

.add-button {
  width: 100%;
  margin-top: 8px;
}

.split-section {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 22px;
  align-items: stretch;
}

.special-panel,
.special-card,
.catering,
.order-box,
.info-box {
  border-radius: 34px;
  padding: 34px;
  background: #24130b;
  color: white;
  box-shadow: 0 20px 60px rgba(36, 19, 11, 0.14);
}

.special-panel p:not(.eyebrow),
.special-card p,
.catering p,
.info-box p {
  color: rgba(255, 247, 232, 0.78);
  line-height: 1.65;
}

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

.check-list li {
  padding-left: 30px;
  position: relative;
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffd34d;
}

.special-card {
  background: #ffd34d;
  color: #24130b;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.special-card p {
  color: #5f3b20;
}

.special-name {
  font-weight: 900;
  font-size: 1.4rem;
}

.special-price {
  font-size: 3.4rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  margin-bottom: 10px;
}

.catering {
  background: linear-gradient(135deg, #d82716, #ff7a1a);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.catering div {
  max-width: 700px;
}

.catering .button {
  background: white;
  color: #d82716;
  flex: 0 0 auto;
}

.order-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.order-box {
  background: white;
  color: #24130b;
}

.order-list {
  min-height: 120px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.order-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(36, 19, 11, 0.1);
  color: #6b4b33;
}

.empty-order {
  font-style: italic;
}

.order-total {
  margin: 24px 0;
  padding-top: 18px;
  border-top: 2px solid rgba(36, 19, 11, 0.14);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.3rem;
}

.full {
  width: 100%;
}

.info-box {
  background: #24130b;
}

.note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 247, 232, 0.16);
}

.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 46px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #76543a;
  font-weight: 800;
}

.footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    flex-wrap: wrap;
    padding: 16px 0;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-bottom: 10px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
  }

  .nav-cta {
    text-align: center;
    padding: 13px 18px !important;
  }

  .hero,
  .split-section,
  .order-layout,
  .catering {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-card {
    transform: none;
  }

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

  .catering {
    display: grid;
  }

  .catering .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .features,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 48px 0;
  }

  .special-panel,
  .special-card,
  .catering,
  .order-box,
  .info-box {
    padding: 26px;
    border-radius: 26px;
  }

  .deal-badge {
    width: 118px;
    height: 118px;
    left: 16px;
    bottom: 16px;
  }

  .deal-badge span {
    font-size: 1.55rem;
  }

  .footer {
    flex-direction: column;
  }
}