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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fffaf2;
  color: #23160b;
  line-height: 1.6;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(39, 19, 5, .96);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 7%;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
}

.logo {
  font-weight: 900;
  font-size: 1.2rem;
}

.logo span {
  color: #fb923c;
}

nav {
  display: flex;
  gap: 18px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: .95rem;
}

.menu-btn {
  display: none;
  background: none;
  color: white;
  border: 0;
  font-size: 1.8rem;
}

.hero {
  min-height: 90vh;
  background:
    linear-gradient(rgba(42, 20, 5, .82), rgba(114, 45, 10, .62)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 8% 7%;
  color: white;
}

.hero-content {
  max-width: 850px;
}

.badge, .section-label {
  color: #fb923c;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  line-height: 1.02;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.18rem;
  max-width: 750px;
  margin-bottom: 28px;
  color: #fff3e8;
}

.hero-buttons, .contact-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: none;
  cursor: pointer;
}

.primary {
  background: #ea580c;
  color: white;
}

.secondary {
  background: white;
  color: #7c2d12;
}

.ghost {
  background: transparent;
  color: #7c2d12;
  border: 2px solid #fed7aa;
}

.full {
  width: 100%;
  text-align: center;
}

.info-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: -45px 7% 60px;
  background: white;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(124,45,18,.18);
}

.info-bar div {
  padding: 26px;
  text-align: center;
  border-right: 1px solid #ffedd5;
}

.info-bar strong {
  display: block;
  font-size: 1.8rem;
  color: #c2410c;
}

.info-bar span {
  color: #7c2d12;
  font-weight: 800;
}

.section {
  padding: 80px 7%;
}

.section h2, .order-section h2, .reservation h2, .reviews h2, .contact h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 25px;
}

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

.special-card {
  background: white;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(124,45,18,.10);
}

.special-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.special-card div {
  padding: 22px;
}

.menu-section {
  background: #fff3e8;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.tab {
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: white;
  color: #7c2d12;
  font-weight: 900;
  cursor: pointer;
}

.tab.active {
  background: #ea580c;
  color: white;
}

.category {
  display: none;
}

.category.active {
  display: grid;
}

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

.menu-item {
  background: white;
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 10px 25px rgba(124,45,18,.10);
}

.menu-item h3 {
  margin-bottom: 8px;
}

.menu-item strong {
  display: block;
  margin-top: 12px;
  color: #c2410c;
  font-size: 1.4rem;
}

.order-section {
  padding: 80px 7%;
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 45px;
  background: white;
}

.order-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 25px;
}

.order-products button {
  border: 0;
  background: #ffedd5;
  color: #7c2d12;
  padding: 18px;
  border-radius: 18px;
  font-weight: 900;
  cursor: pointer;
  text-align: left;
}

.cart {
  background: #fff7ed;
  padding: 28px;
  border-radius: 28px;
  box-shadow: 0 15px 35px rgba(124,45,18,.12);
}

.cart h3 {
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.cart ul {
  list-style: none;
  margin-bottom: 18px;
}

.cart li {
  padding: 10px 0;
  border-bottom: 1px solid #fed7aa;
  font-weight: 800;
}

.total {
  font-size: 1.4rem;
  font-weight: 900;
  margin: 18px 0;
}

.feature-grid, .review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature-grid div, .review-grid div {
  background: white;
  padding: 25px;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(124,45,18,.10);
}

.reservation {
  padding: 80px 7%;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 45px;
  background:
    linear-gradient(rgba(39,19,5,.88), rgba(39,19,5,.82)),
    url("https://images.unsplash.com/photo-1550966871-3ed3cdb5ed0c?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: white;
}

.hours {
  margin-top: 25px;
  background: rgba(255,255,255,.12);
  padding: 22px;
  border-radius: 22px;
}

form {
  background: white;
  padding: 28px;
  border-radius: 26px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  display: grid;
  gap: 14px;
}

input, textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #fed7aa;
  border-radius: 14px;
  font-size: 1rem;
}

textarea {
  min-height: 115px;
  resize: vertical;
}

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

.g {
  min-height: 280px;
  border-radius: 26px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(124,45,18,.12);
}

.g span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(124,45,18,.82);
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 900;
}

.g1 { background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=900&q=80"); }
.g2 { background-image: url("https://images.unsplash.com/photo-1544145945-f90425340c7e?auto=format&fit=crop&w=900&q=80"); }
.g3 { background-image: url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=900&q=80"); }
.g4 { background-image: url("https://images.unsplash.com/photo-1551024506-0bccd828d307?auto=format&fit=crop&w=900&q=80"); }
.g5 { background-image: url("https://images.unsplash.com/photo-1577219491135-ce391730fb2c?auto=format&fit=crop&w=900&q=80"); }
.g6 { background-image: url("https://images.unsplash.com/photo-1555244162-803834f70033?auto=format&fit=crop&w=900&q=80"); }

.reviews {
  padding: 80px 7%;
  background: #fff3e8;
  text-align: center;
}

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

.review-grid strong {
  display: block;
  margin-top: 15px;
  color: #c2410c;
}

.contact {
  padding: 80px 7%;
  text-align: center;
  background: white;
}

.contact-buttons {
  justify-content: center;
}

footer {
  background: #271305;
  color: white;
  text-align: center;
  padding: 25px;
}

@media (max-width: 950px) {
  .menu-btn {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #271305;
    flex-direction: column;
    padding: 20px 7%;
  }

  nav.show {
    display: flex;
  }

  .info-bar,
  .special-grid,
  .menu-grid,
  .order-section,
  .order-products,
  .feature-grid,
  .reservation,
  .gallery,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .info-bar {
    margin-top: 0;
    border-radius: 0;
  }

  .hero {
    min-height: 78vh;
  }
}
