:root {
  --brand-red: #d62828;
  --brand-red-dark: #a81e1e;
  --brand-gold: #f2a900;
  --dark: #241715;
  --cream: #fdf6ec;
  --text: #2b1e1c;
  --radius-pill: 999px;
  --shadow: 0 10px 25px rgba(0,0,0,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

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

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

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

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.navbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.logo span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--brand-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nav-links {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: #f1e9df;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--brand-gold); }

/* Order button */
.btn-order {
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, background 0.2s ease;
  white-space: nowrap;
  display: inline-block;
}

.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
}

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

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
  background: #fff;
  color: var(--dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

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

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('../images/photo-05.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,23,21,0.6) 0%, rgba(36,23,21,0.75) 60%, rgba(36,23,21,0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 40px 24px;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-gold);
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.hero h1 {
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 800;
}

.hero-tagline {
  font-size: 1.15rem;
  margin-bottom: 32px;
  color: #f4ece0;
}

.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #f4ece0;
}

.stars { color: var(--brand-gold); font-size: 1.1rem; }

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: #fff2df; }

.section-title {
  font-size: 2.1rem;
  text-align: center;
  margin-bottom: 8px;
  color: var(--brand-red);
  font-weight: 800;
}

.section-sub {
  text-align: center;
  color: #6b5750;
  margin-bottom: 48px;
}

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

.about-text h2 {
  font-size: 2.1rem;
  color: var(--brand-red);
  margin-bottom: 20px;
  font-weight: 800;
}

.about-text p { margin-bottom: 16px; color: #4a3a35; }

.about-photo img {
  border-radius: 16px;
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.menu-category {
  background: #fff;
  border-radius: 14px;
  padding: 28px 32px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.menu-category h3 {
  color: var(--brand-red);
  font-size: 1.3rem;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--brand-gold);
  padding-bottom: 8px;
}

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

.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-bottom: 1px dashed #e5d6c5;
}

.menu-category li:last-child { border-bottom: none; }

.menu-category li span {
  font-weight: 700;
  color: var(--text);
}

.menu-category li em {
  font-style: normal;
  color: #7a6a63;
  font-size: 0.9rem;
}

.menu-note {
  text-align: center;
  margin-top: 32px;
  color: #6b5750;
  font-size: 0.95rem;
}

.menu-note a { color: var(--brand-red); font-weight: 600; }

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

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  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: 14px;
  padding: 28px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.review-card p {
  font-size: 1.05rem;
  color: #4a3a35;
  margin: 12px 0;
}

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

.reviews-summary {
  text-align: center;
  margin-top: 32px;
  font-weight: 600;
  color: #6b5750;
}

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

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.hours-table th, .hours-table td {
  padding: 12px 20px;
  text-align: left;
  border-bottom: 1px solid #f0e4d5;
}

.hours-table th { color: var(--text); font-weight: 600; }
.hours-table td { color: #6b5750; text-align: right; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }

.address-line { margin-bottom: 8px; color: #4a3a35; }
.address-line a { color: var(--brand-red); font-weight: 700; }

.hours-block .btn-order { margin-top: 20px; }

.map-embed iframe {
  border-radius: 14px;
  box-shadow: var(--shadow);
}

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

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-name { font-weight: 700; font-size: 1.1rem; color: #fff; margin-bottom: 6px; }
.footer-inner a { color: var(--brand-gold); font-weight: 600; }

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20,12,10,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal-backdrop[hidden] { display: none; }

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

.modal h2 {
  color: var(--brand-red);
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.modal p {
  color: #4a3a35;
  margin-bottom: 24px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #999;
}

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

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .hours-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.1rem; }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 18px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .navbar-inner .btn-order { display: none; }
  .navbar-inner { position: relative; }
}

@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero h1 { font-size: 1.7rem; }
}
