/* ---------- Base ---------- */
:root {
  --brand-red: #d62828;
  --brand-red-dark: #a81f1f;
  --brand-gold: #e0a326;
  --ink: #241814;
  --cream: #fdf7ef;
  --cream-dark: #f4e9d8;
  --brown: #5c3a2e;
  --font-display: 'Fraunces', serif;
  --font-body: 'Nunito Sans', sans-serif;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

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

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

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

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

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

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

.section-sub {
  color: #6b5a52;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  border-radius: 999px;
  padding: 0.7em 1.6em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.btn-order {
  background: var(--brand-red);
  color: #fff;
  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-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

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

.btn-lg { padding: 0.9em 2.1em; font-size: 1.1rem; }

.btn { white-space: nowrap; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 247, 239, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--cream-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--ink);
}

.brand-mark { font-size: 1.5rem; }

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  font-weight: 700;
  color: var(--brown);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--ink);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
}

.mobile-nav a {
  padding: 10px 0;
  font-weight: 700;
  color: var(--brown);
  border-bottom: 1px solid var(--cream-dark);
}

.btn-order-mobile {
  margin-top: 12px;
  text-align: center;
}

/* ---------- Hero ---------- */
.hero {
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 120px 0 100px;
}

.hero-inner { max-width: 720px; }

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--brand-gold);
  margin-bottom: 1em;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 0.6em;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 2em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 2em;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
}

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

/* ---------- About ---------- */
.about { padding: 90px 0; }

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

.about-text h2 { font-size: 2.1rem; }

.about-text p { margin-bottom: 1.1em; color: #4a3a34; }

.about-photo img {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(36,24,20,0.2);
}

/* ---------- Menu ---------- */
.menu { padding: 90px 0; background: var(--cream-dark); }

.menu h2 { font-size: 2.1rem; }

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

.menu-category h3 {
  font-size: 1.4rem;
  color: var(--brand-red);
  border-bottom: 2px solid var(--brand-gold);
  padding-bottom: 0.4em;
  margin-bottom: 0.8em;
}

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

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

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

.item-name { font-weight: 800; font-size: 1.05rem; }

.item-desc { color: #6b5a52; font-size: 0.95rem; margin-top: 2px; }

/* ---------- Gallery ---------- */
.gallery { padding: 90px 0; }

.gallery h2 { font-size: 2.1rem; }

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

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

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

/* ---------- Reviews ---------- */
.reviews { padding: 90px 0; background: var(--cream-dark); }

.reviews h2 { font-size: 2.1rem; }

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

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

.review-card p { color: #4a3a34; margin: 0.8em 0 0; }

.review-author { font-weight: 800; color: var(--ink); }

.reviews-google {
  text-align: center;
  margin-top: 32px;
  font-weight: 700;
  color: var(--brown);
}

/* ---------- Location ---------- */
.location { padding: 90px 0; }

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

.location-info h2 { font-size: 2.1rem; }

.location-info address {
  font-style: normal;
  font-size: 1.1rem;
  margin-bottom: 0.5em;
  color: #4a3a34;
}

.phone-link {
  display: inline-block;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--brand-red);
  margin-bottom: 1.5em;
}

.hours-table {
  border-collapse: collapse;
  margin-bottom: 2em;
  width: 100%;
  max-width: 340px;
}

.hours-table th, .hours-table td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-weight: 600;
}

.hours-table th { color: var(--brown); font-weight: 700; }

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

.location-map iframe { width: 100%; height: 100%; min-height: 320px; }

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

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

.footer-brand { display: flex; flex-direction: column; gap: 4px; }

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

.footer-brand p { margin: 0; color: rgba(241,230,218,0.75); font-size: 0.95rem; }

.footer-brand a { color: rgba(241,230,218,0.9); }

.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; }

.footer-nav a { color: rgba(241,230,218,0.85); font-weight: 600; }

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

.footer-bottom {
  padding-top: 20px;
  text-align: center;
  color: rgba(241,230,218,0.55);
  font-size: 0.85rem;
}

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

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

.modal h2 { font-size: 1.6rem; margin-bottom: 0.6em; }

.modal p { color: #4a3a34; margin-bottom: 1.6em; }

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

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

/* ---------- 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: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 90px 0 70px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
}

@media (max-width: 480px) {
  .brand-name { font-size: 1.05rem; }
  .header-inner .btn-order { padding: 0.6em 1.1em; font-size: 0.9rem; }
  .header-actions { gap: 10px; }
}

@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 160px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
