:root {
  --brand-red: #d62828;
  --brand-red-dark: #a81f1f;
  --brand-orange: #f77f00;
  --ink: #2b1c17;
  --cream: #fffaf3;
  --tan: #f4e6d3;
  --brown: #5a3d2b;
  --font-display: 'Fraunces', serif;
  --font-body: 'Nunito Sans', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); margin: 0 0 0.5em; line-height: 1.15; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 800;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
}
.btn--order {
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 4px 14px rgba(214, 40, 40, 0.45);
}
.btn--order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(214, 40, 40, 0.55);
}
.btn--lg { padding: 16px 34px; font-size: 1.05rem; }
.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 14px 32px;
}
.btn--outline:hover { background: rgba(255,255,255,0.15); }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 243, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(90, 61, 43, 0.1);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 16px;
}
.navbar__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--brand-red);
}
.navbar__nav {
  display: flex;
  gap: 28px;
  font-weight: 700;
}
.navbar__nav a:hover { color: var(--brand-red); }
.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
}
.navbar__toggle span {
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #7a2f1c 0%, #5a3d2b 100%), url('../images/photo-01.jpg') center/cover no-repeat;
  background-blend-mode: multiply;
  color: #fff;
  text-align: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.6) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--brand-orange);
  margin-bottom: 12px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  margin-bottom: 18px;
}
.hero__tagline {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 28px;
  color: #f4e6d3;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
}
.stars { color: var(--brand-orange); font-size: 1.1rem; }

/* Sections */
.section { padding: 88px 0; }
.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--brand-red);
  margin-bottom: 10px;
}
.section__subtitle {
  max-width: 560px;
  margin: 0 auto 40px;
  color: var(--brown);
}
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* About */
.about { background: var(--tan); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about__image img {
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.about__text h2 { font-size: 2.1rem; }

/* Menu */
.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 20px;
}
.menu__category h3 {
  color: var(--brand-red);
  border-bottom: 3px solid var(--brand-orange);
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 18px;
}
.menu__list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(90,61,43,0.25);
  font-weight: 600;
}
.price { color: var(--brand-red); font-weight: 800; }
.menu__note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--brown);
  font-style: italic;
}

/* Gallery */
.gallery { background: var(--tan); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery__grid img {
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  transition: transform 0.2s ease;
}
.gallery__grid img:hover { transform: scale(1.03); }

/* Reviews */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.review-card p { font-size: 0.95rem; color: var(--brown); }
.review-card__author { font-weight: 800; color: var(--ink); margin: 0; }

/* Location */
.location { background: var(--tan); }
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.location__info address { font-style: normal; display: block; margin-bottom: 8px; font-weight: 700; }
.location__phone {
  display: inline-block;
  color: var(--brand-red);
  font-weight: 800;
  margin-bottom: 22px;
  font-size: 1.1rem;
}
.hours {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
}
.hours th, .hours td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid rgba(90,61,43,0.15);
  font-weight: 600;
}
.hours th { color: var(--brown); font-weight: 700; }
.location__map {
  min-height: 340px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,0.15);
}
.location__map iframe { width: 100%; height: 100%; }

/* Footer */
.footer {
  background: var(--ink);
  color: #f4e6d3;
  padding: 48px 0 20px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}
.footer a:hover { color: var(--brand-orange); }
.footer__copy {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-overlay[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  max-width: 420px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.modal h3 { color: var(--brand-red); font-size: 1.5rem; }
.modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--brown);
  line-height: 1;
}
.modal .btn--order { margin-top: 8px; }

/* Responsive */
@media (max-width: 900px) {
  .about__grid, .location__grid { grid-template-columns: 1fr; }
  .menu__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .navbar__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(90,61,43,0.1);
    display: none;
  }
  .navbar__nav.is-open { display: flex; }
  .navbar__order { display: none; }
  .navbar__toggle { display: flex; }
  .menu__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { flex-direction: column; text-align: center; }
}
