:root {
  --brand-red: #c1272d;
  --brand-red-dark: #9e1f24;
  --dark: #1a1512;
  --cream: #faf6ef;
  --tan: #f0e4d0;
  --text: #2b241f;
  --muted: #6b6058;
  --gold: #d4a017;
}

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
}

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

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

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

/* Order button - most striking element */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 999px;
  padding: 14px 32px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(193, 39, 45, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
}

.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(193, 39, 45, 0.5);
}

.btn-order-lg {
  padding: 18px 44px;
  font-size: 1.15rem;
}

.btn-secondary {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 999px;
  padding: 16px 36px;
  font-weight: 700;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  transition: background 0.15s ease, color 0.15s ease;
}

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

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 21, 18, 0.96);
  backdrop-filter: blur(6px);
}

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

.logo {
  font-size: 1.5rem;
  color: #fff;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.logo span { color: var(--gold); }

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

.nav-links a {
  color: #eee;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

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

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #3a2a1c 0%, #1a1512 100%), url('../images/photo-01.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 60px 24px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-eyebrow {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

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

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

.hero-rating {
  color: var(--gold);
  font-size: 1.1rem;
}

.hero-rating span {
  color: #ddd;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  margin-left: 8px;
}

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

h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 12px;
  color: var(--dark);
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  margin-bottom: 48px;
}

/* About */
.about { background: #fff; }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.about-text h2 { text-align: left; }

.about-text p {
  margin-bottom: 18px;
  color: #4a413a;
}

.about-image img {
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Menu */
.menu { background: var(--tan); }

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

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

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

.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.12);
}

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

.item-name {
  font-weight: 700;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.05rem;
  color: var(--dark);
}

.item-desc {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 4px;
}

/* Gallery */
.gallery { background: #fff; }

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

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

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

/* Reviews */
.reviews { background: var(--dark); color: #f2ece2; }

.reviews h2 { color: #fff; }

.reviews .section-sub { color: var(--gold); }

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

.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 24px;
}

.review-stars {
  color: var(--gold);
  margin-bottom: 10px;
}

.review-text {
  font-style: italic;
  color: #e6ddd0;
  margin-bottom: 14px;
}

.review-author {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
}

/* Location */
.location { background: #fff; }

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

.location-info h3 {
  font-size: 1.15rem;
  margin: 22px 0 12px;
  color: var(--brand-red);
}

.location-info h3:first-child { margin-top: 0; }

.hours-list { list-style: none; }

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.location-info > .btn-order { margin-top: 24px; }

.location-map iframe {
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

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

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo { margin-bottom: 10px; }

.footer-links {
  display: flex;
  gap: 22px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  padding-top: 20px;
  color: #8a8177;
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active { display: flex; }

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

.modal h3 {
  color: var(--dark);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.modal p {
  color: var(--muted);
  margin-bottom: 24px;
}

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

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

.modal-call { width: 100%; }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .location-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); }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 21, 18, 0.98);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .nav-links.open {
    max-height: 320px;
  }

  .nav-links a {
    padding: 16px;
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .nav-order { display: none; }

  .hamburger { display: flex; }

  .hero h1 { font-size: 2.1rem; }
  .hero-sub { font-size: 1rem; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 160px; }

  section { padding: 56px 0; }
}
