/* ===== Variables & Reset ===== */
:root {
  --brand-red: #d62828;
  --brand-red-dark: #b21f1f;
  --brand-gold: #f2a541;
  --ink: #2b2118;
  --cream: #fdf6ec;
  --cream-dark: #f5e9d6;
  --brown: #6b4a35;
  --white: #ffffff;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-lg: 20px;
  --shadow: 0 10px 30px rgba(43, 33, 24, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

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

/* ===== Order Button (brand element) ===== */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 999px;
  padding: 13px 30px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(214, 40, 40, 0.4);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(214, 40, 40, 0.5);
}
.btn-order:active { transform: translateY(0); }

.btn-order--lg {
  padding: 18px 42px;
  font-size: 1.1rem;
}

.btn-secondary {
  display: inline-block;
  padding: 16px 38px;
  border-radius: 999px;
  border: 2px solid var(--white);
  color: var(--white);
  font-weight: 700;
  transition: background 0.18s ease, color 0.18s ease;
}
.btn-secondary:hover { background: var(--white); color: var(--ink); }

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(253, 246, 236, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.navbar__brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}
.navbar__brand span { color: var(--brand-red); }
.navbar__links {
  display: flex;
  gap: 30px;
}
.navbar__links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.navbar__links a:hover { color: var(--brand-red); }
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
.navbar__toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,33,24,0.55) 0%, rgba(43,33,24,0.65) 50%, rgba(43,33,24,0.85) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--brand-gold);
  margin-bottom: 18px;
  font-size: 0.9rem;
}
.hero h1 {
  font-size: clamp(2.3rem, 5.5vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 20px;
}
.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 34px;
  max-width: 560px;
}
.hero__actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* ===== Section shared ===== */
section { padding: 90px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--brand-red);
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.section-eyebrow--center { text-align: center; }
.section-title {
  font-size: clamp(2rem, 4vw, 2.7rem);
  text-align: center;
  margin-bottom: 16px;
}
.section-subtitle {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 50px;
  color: var(--brown);
  font-size: 1.05rem;
}

/* ===== About ===== */
.about { background: var(--white); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about__text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 22px;
}
.about__text p {
  color: var(--brown);
  margin-bottom: 18px;
}

/* ===== Menu ===== */
.menu { background: var(--cream-dark); }
.menu__categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.menu-category {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
}
.menu-category h3 {
  font-size: 1.4rem;
  color: var(--brand-red);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px dashed var(--cream-dark);
}
.menu-list { list-style: none; }
.menu-list li {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.menu-list li:last-child { margin-bottom: 0; }
.menu-item__name {
  font-weight: 800;
  font-size: 1.05rem;
}
.menu-item__desc {
  color: var(--brown);
  font-size: 0.92rem;
  margin-top: 3px;
}
.menu__cta {
  text-align: center;
  margin-top: 50px;
}

/* ===== Gallery ===== */
.gallery { background: var(--white); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery__grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.3s ease;
}
.gallery__grid img:hover { transform: scale(1.03); }

/* ===== Reviews ===== */
.reviews { background: var(--cream-dark); }
.reviews__rating {
  text-align: center;
  margin-bottom: 44px;
}
.reviews__stars {
  color: var(--brand-gold);
  font-size: 1.4rem;
  letter-spacing: 2px;
}
.reviews__score {
  font-weight: 800;
  font-size: 1.2rem;
  margin-left: 10px;
}
.reviews__count {
  color: var(--brown);
  margin-left: 8px;
  font-size: 0.95rem;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--brand-gold);
}
.review-card p {
  font-style: italic;
  margin-bottom: 16px;
  color: var(--ink);
}
.review-card cite {
  font-weight: 800;
  color: var(--brand-red);
  font-style: normal;
}

/* ===== Location ===== */
.location { background: var(--white); }
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.location__info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin: 12px 0 20px;
}
.location__info address {
  font-style: normal;
  font-size: 1.05rem;
  color: var(--brown);
  margin-bottom: 8px;
}
.location__phone {
  display: inline-block;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--brand-red);
  margin-bottom: 30px;
}
.hours-table {
  width: 100%;
  margin-bottom: 34px;
  border-collapse: collapse;
}
.hours-table tr { border-bottom: 1px solid var(--cream-dark); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table th, .hours-table td {
  text-align: left;
  padding: 10px 0;
  font-weight: 600;
}
.hours-table th { color: var(--ink); font-weight: 700; }
.hours-table td { color: var(--brown); text-align: right; }
.location__map {
  min-height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.location__map iframe { width: 100%; height: 100%; min-height: 380px; }

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 60px 0 0;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-bottom: 40px;
}
.footer__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.footer__name span { color: var(--brand-gold); }
.footer__brand p, .footer__brand a { color: rgba(253,246,236,0.75); }
.footer__brand a { display: block; margin-top: 4px; font-weight: 700; color: var(--brand-gold); }
.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__links a {
  color: rgba(253,246,236,0.85);
  font-weight: 600;
}
.footer__links a:hover { color: var(--brand-gold); }
.footer__bottom {
  border-top: 1px solid rgba(253,246,236,0.12);
  padding: 22px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(253,246,236,0.5);
}

/* ===== Modal ===== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(43,33,24,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  text-align: center;
}
.modal h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--ink);
}
.modal p {
  color: var(--brown);
  margin-bottom: 26px;
}
.modal__phone {
  display: inline-block;
  background: var(--brand-red);
  color: var(--white);
  font-weight: 800;
  padding: 14px 32px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(214,40,40,0.4);
}
.modal__phone:hover { background: var(--brand-red-dark); }
.modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--brown);
}
.modal__close:hover { color: var(--brand-red); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about__grid, .location__grid { grid-template-columns: 1fr; }
  .menu__categories { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .location__map { min-height: 300px; }
}

@media (max-width: 760px) {
  .navbar__links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  .navbar__links.is-open { max-height: 320px; }
  .navbar__links a {
    padding: 16px 24px;
    border-bottom: 1px solid var(--cream-dark);
    width: 100%;
  }
  .navbar__toggle { display: flex; }
  .navbar__actions .btn-order { display: none; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn-secondary { text-align: center; }
}

@media (max-width: 560px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 60px 0; }
}
