:root {
  --color-brand-red: #d92626;
  --color-brand-red-dark: #b31c1c;
  --color-dark: #241713;
  --color-cream: #fff8ef;
  --color-tan: #f4e6d3;
  --color-text: #2b2118;
  --color-muted: #6b5d52;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.6;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
}

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

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn--order {
  background: var(--color-brand-red);
  color: #fff;
  padding: 12px 28px;
  font-size: 1rem;
  box-shadow: 0 6px 18px rgba(217,38,38,0.45);
  letter-spacing: 0.02em;
}

.btn--order:hover {
  background: var(--color-brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(217,38,38,0.55);
}

.btn--lg {
  padding: 16px 38px;
  font-size: 1.1rem;
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 14px 34px;
  font-size: 1.1rem;
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.15);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(36, 23, 19, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.navbar__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
}

.navbar__brand span {
  color: var(--color-brand-red);
}

.navbar__links {
  display: flex;
  gap: 28px;
}

.navbar__links a {
  color: #f4e6d3;
  font-weight: 600;
  font-size: 0.95rem;
}

.navbar__links a:hover {
  color: var(--color-brand-red);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #3a1f16, #6b2a1f), url('../images/photo-01.jpg') center/cover no-repeat;
  background-blend-mode: multiply;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,10,8,0.55), rgba(20,10,8,0.75));
}

.hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 100px 24px;
}

.hero__eyebrow {
  color: #ffcf99;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 800;
  max-width: 780px;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero__tagline {
  max-width: 620px;
  font-size: 1.15rem;
  margin-bottom: 32px;
  color: #f4e6d3;
}

.hero__cta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #f4e6d3;
}

.stars {
  color: #ffb020;
  font-size: 1.1rem;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--color-tan);
}

.section__title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-align: center;
  color: var(--color-dark);
}

.section__subtitle {
  text-align: center;
  color: var(--color-muted);
  margin-bottom: 44px;
  font-size: 1.05rem;
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}

.about__text .section__title {
  text-align: left;
}

.about__text p {
  margin-bottom: 18px;
  color: var(--color-text);
}

.about__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* Menu */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.menu-category h3 {
  font-size: 1.3rem;
  color: var(--color-brand-red-dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-brand-red);
  display: inline-block;
}

.menu-category ul {
  list-style: none;
}

.menu-category li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #d8c4a8;
  font-weight: 600;
}

.menu-category .price {
  color: var(--color-muted);
  font-weight: 700;
}

.menu-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.9rem;
  color: var(--color-muted);
}

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

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.review-card p {
  margin: 14px 0;
  color: var(--color-text);
}

.review-author {
  font-weight: 700;
  color: var(--color-brand-red-dark);
}

/* Location */
.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.location__info address {
  font-style: normal;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.phone-link {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-brand-red-dark);
  display: inline-block;
  margin-bottom: 20px;
}

.hours-table {
  width: 100%;
  margin-bottom: 28px;
  border-collapse: collapse;
}

.hours-table th, .hours-table td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid #e0d2ba;
}

.hours-table th {
  font-weight: 600;
  color: var(--color-muted);
}

.location__map iframe {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
  background: var(--color-dark);
  color: #f4e6d3;
  padding: 56px 0 24px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}

.footer__brand h3 {
  color: #fff;
  margin-bottom: 8px;
}

.footer__brand p {
  color: #d8c4a8;
  font-size: 0.95rem;
}

.footer__links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer__links a:hover {
  color: var(--color-brand-red);
}

.footer__copy {
  text-align: center;
  font-size: 0.85rem;
  color: #a08b76;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
}

/* Modal */
.modal-backdrop {
  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-backdrop[hidden] {
  display: none;
}

.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  text-align: center;
}

.modal h2 {
  margin-bottom: 16px;
  color: var(--color-dark);
}

.modal p {
  font-size: 1.05rem;
}

.modal p a {
  color: var(--color-brand-red-dark);
  font-weight: 700;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-muted);
}

.modal__close:hover {
  color: var(--color-brand-red);
}

/* Responsive */
@media (max-width: 900px) {
  .about, .location {
    grid-template-columns: 1fr;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .navbar__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(36,23,19,0.98);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    display: none;
  }
  .navbar__links.is-open {
    display: flex;
  }
  .navbar__toggle {
    display: flex;
  }
  .navbar__order {
    display: none;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero__content {
    padding: 80px 20px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}
