:root {
  --brand-red: #d62828;
  --brand-red-dark: #a91f1f;
  --brand-orange: #f4a11a;
  --brand-green: #2f6b3f;
  --ink: #2b2118;
  --cream: #fdf6ec;
  --cream-alt: #f7ece0;
  --stone: #6b5c4f;
  --shadow: 0 12px 30px rgba(43, 33, 24, 0.18);
  --radius-lg: 20px;
  --radius-pill: 999px;
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

a { color: inherit; }

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

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-family: 'Nunito Sans', sans-serif;
  letter-spacing: 0.02em;
}

.btn--order {
  background: var(--brand-red);
  color: #fff;
  padding: 0.7em 1.6em;
  font-size: 1rem;
  box-shadow: 0 6px 18px rgba(214, 40, 40, 0.4);
}

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

.btn--lg { padding: 0.95em 2.2em; font-size: 1.1rem; }

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 0.85em 2.1em;
  font-size: 1.1rem;
}

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

.btn--nav { display: none; }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 236, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(43,33,24,0.08);
}

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

.navbar__brand {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--brand-red);
  white-space: nowrap;
}

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

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

.navbar__links a {
  text-decoration: none;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}

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

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

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

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,18,12,0.55) 0%, rgba(30,18,12,0.55) 40%, rgba(20,12,8,0.85) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 760px;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--brand-orange);
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  color: #fff;
  margin-bottom: 20px;
}

.hero__tagline {
  font-size: 1.15rem;
  max-width: 620px;
  color: #f2e9dc;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0 40px;
}

.hero__stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero__stats div {
  display: flex;
  flex-direction: column;
}

.hero__stats strong {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--brand-orange);
}

.hero__stats span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e6dccb;
}

/* Sections */
.section { padding: 90px 0; }
.section--alt { background: var(--cream-alt); }

.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--brand-red);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--ink);
}

.section__lede {
  max-width: 680px;
  color: var(--stone);
  font-size: 1.05rem;
}

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

.about__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Menu */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.menu-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--brand-orange);
}

.menu-card h3 {
  color: var(--brand-red);
  font-size: 1.25rem;
  margin-bottom: 16px;
}

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

.menu-card li {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0e5d6;
}

.menu-card li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.menu-card li span {
  display: block;
  font-weight: 800;
  color: var(--ink);
}

.menu-card li em {
  font-style: normal;
  color: var(--stone);
  font-size: 0.92rem;
}

.menu-note {
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--stone);
  font-style: italic;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
  margin-top: 36px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.gallery-grid img:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid img:nth-child(5) { grid-column: span 2; }

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  margin: 0;
}

.review-card__stars {
  color: var(--brand-orange);
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.review-card p {
  font-size: 1rem;
  color: var(--ink);
}

.review-card footer {
  font-weight: 800;
  color: var(--brand-red);
  font-size: 0.9rem;
}

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

.info-block { margin-bottom: 28px; }

.info-block h3 {
  font-size: 1.1rem;
  color: var(--brand-red);
  margin-bottom: 10px;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #ece1d2;
  max-width: 360px;
}

.hours-list li span:first-child { font-weight: 700; }

.hours__map {
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hours__map iframe { display: block; }

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

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}

.footer__logo {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 8px;
}

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

.footer__brand a { color: var(--brand-orange); text-decoration: none; }

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

.footer__links a {
  color: #eee3d3;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}

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

.footer__copy {
  text-align: center;
  color: #8a7d6c;
  font-size: 0.82rem;
  margin: 36px 0 0;
}

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

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

.modal {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  text-align: center;
}

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

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

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

.modal__call { margin-top: 8px; }

/* Responsive */
@media (max-width: 900px) {
  .about__grid, .hours__grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-grid img:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-grid img:nth-child(5) { grid-column: span 1; }
  .hours__map { height: 320px; }
}

@media (max-width: 780px) {
  .navbar__links { display: none; }
  .navbar__toggle { display: flex; }
  .btn--nav { display: inline-block; }
  .navbar.is-open .navbar__links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: var(--shadow);
  }
  .hero { min-height: 100vh; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; }
}

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