/* ---------- Base ---------- */
:root {
  --brand-red: #d62828;
  --brand-red-dark: #b71f1f;
  --brand-orange: #f4a521;
  --dark: #241914;
  --cream: #fff8ef;
  --tan: #f6ead9;
  --text: #33251c;
  --font-display: 'Fraunces', serif;
  --font-body: 'Nunito Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

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

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

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

section { padding: 88px 0; }

.section-tag {
  color: var(--brand-red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.section-sub {
  color: #6b5a4c;
  max-width: 560px;
  margin: 0 auto 40px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

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

.btn-order {
  background: var(--brand-red);
  color: #fff;
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px rgba(214, 40, 40, 0.4);
}

.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(214, 40, 40, 0.5);
}

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

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 999px;
  padding: 14px 36px;
  font-size: 1.1rem;
}

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(36, 25, 20, 0.96);
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 20px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

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

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

.main-nav a {
  color: #f1e6da;
  font-weight: 600;
  font-size: 0.95rem;
}

.main-nav a:hover { color: var(--brand-orange); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: url('../images/photo-01.jpg') center/cover no-repeat;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,25,20,0.55) 0%, rgba(36,25,20,0.78) 70%, rgba(36,25,20,0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
}

.hero-eyebrow {
  color: var(--brand-orange);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 800px;
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero-sub {
  max-width: 600px;
  font-size: 1.1rem;
  color: #f1e6da;
  margin-bottom: 34px;
}

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

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #f1e6da;
}

.stars {
  color: var(--brand-orange);
  letter-spacing: 2px;
}

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

.about-image img {
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(36,25,20,0.2);
}

.about-text h2 { font-size: 2rem; margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; color: #4c3b2f; }

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

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

.menu-category h3 {
  font-size: 1.3rem;
  color: var(--brand-red-dark);
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 2px solid rgba(214,40,40,0.2);
  padding-bottom: 10px;
}

.menu-hours {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: #8a7362;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.menu-category li { margin-bottom: 16px; }

.menu-item-name {
  display: block;
  font-weight: 800;
  font-size: 1.02rem;
}

.menu-item-desc {
  display: block;
  color: #6b5a4c;
  font-size: 0.92rem;
}

.menu-note {
  text-align: center;
  margin-top: 40px;
  color: #8a7362;
  font-size: 0.88rem;
}

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

.gallery-item {
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

/* ---------- Reviews ---------- */
.reviews { background: var(--tan); }

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

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(36,25,20,0.08);
}

.review-card .stars { display: block; margin-bottom: 12px; }

.review-card p { color: #4c3b2f; margin-bottom: 14px; }

.review-author {
  font-weight: 800;
  color: var(--brand-red-dark);
  margin-bottom: 0 !important;
}

.reviews-overall {
  text-align: center;
  margin-top: 36px;
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* ---------- Location ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.location-info h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: var(--brand-red-dark);
}

.location-info h3:not(:first-child) { margin-top: 26px; }

.hours-list { list-style: none; margin-bottom: 10px; }

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(36,25,20,0.08);
  max-width: 320px;
}

.location-info a { color: var(--brand-red); font-weight: 700; }

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

.location-map {
  min-height: 340px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(36,25,20,0.15);
}

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

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

.footer-brand p { margin-bottom: 6px; color: #cbb9a8; }
.footer-brand .logo { margin-bottom: 10px; }

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

.footer-links a { color: #f1e6da; font-weight: 600; }
.footer-links a:hover { color: var(--brand-orange); }

.footer-bottom {
  padding: 22px 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #8a7362;
}

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(36,25,20,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: 18px;
  padding: 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

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

.modal p { color: #4c3b2f; margin-bottom: 26px; }

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #8a7362;
}

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

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

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(36,25,20,0.98);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav.open { max-height: 400px; }

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

  .nav-toggle { display: flex; flex-shrink: 0; }

  .header-inner { gap: 10px; }

  .logo { font-size: 1.05rem; overflow: hidden; text-overflow: ellipsis; }

  .header-inner .btn-order { flex-shrink: 0; padding: 10px 16px; font-size: 0.82rem; }

  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }

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

@media (max-width: 480px) {
  section { padding: 60px 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hours-list li { max-width: 100%; }
}
