:root {
  --brand-red: #c1272d;
  --brand-red-dark: #9c1d22;
  --brand-cream: #fdf8f0;
  --ink: #262019;
  --ink-soft: #55483f;
  --line: #e8ddd0;
  --roof-red: #b23a2e;
  --shadow: 0 10px 30px rgba(38, 32, 25, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--brand-cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  margin: 0 0 0.5em;
  line-height: 1.15;
}

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

a { color: var(--brand-red-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* Order button - the most striking element on the page */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(193, 39, 45, 0.45);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
  text-align: center;
}
.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(193, 39, 45, 0.55);
  text-decoration: none;
}
.btn-order--nav { padding: 10px 24px; font-size: 0.95rem; }
.btn-order--hero { font-size: 1.1rem; padding: 16px 40px; }
.btn-order--inline { margin-top: 20px; }
.btn-order--footer { padding: 12px 28px; }

.btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); text-decoration: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--brand-cream);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--brand-red);
  margin-right: auto;
}
.brand-dot { color: var(--ink); }
.brand-sub { font-size: 1rem; color: var(--ink-soft); font-family: Arial, sans-serif; font-weight: 600; }

.main-nav {
  display: flex;
  gap: 22px;
}
.main-nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--brand-red); text-decoration: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #3a1210 0%, #7a231f 45%, #b23a2e 100%);
  background-image:
    linear-gradient(160deg, rgba(30,10,8,0.75) 0%, rgba(122,35,31,0.55) 55%, rgba(178,58,46,0.4) 100%),
    url("../images/photo-07.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(0,0,0,0.15), transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 100px 24px 90px;
  text-align: center;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.85rem;
  color: #f5d9d6;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.35);
}
.hero-tagline {
  font-size: 1.15rem;
  color: #f6e9e6;
  max-width: 620px;
  margin: 0 auto 32px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #f6e9e6;
}
.stars { color: #ffd166; font-size: 1.1rem; }

/* Sections */
.section { padding: 80px 0; }
.section--muted { background: #fbf1e4; }
.section h2 {
  font-size: 2.1rem;
  color: var(--brand-red-dark);
}
.section-intro {
  color: var(--ink-soft);
  margin-top: -8px;
  margin-bottom: 36px;
  max-width: 560px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-text p { margin-bottom: 18px; }
.about-photo img {
  border-radius: 16px;
  box-shadow: var(--shadow);
}

/* Menu */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.menu-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 28px;
  box-shadow: var(--shadow);
}
.menu-card h3 {
  color: var(--brand-red);
  font-size: 1.25rem;
  border-bottom: 2px solid var(--line);
  padding-bottom: 10px;
  margin-bottom: 14px;
}
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.98rem;
}
.menu-list li:last-child { border-bottom: none; }
.menu-list li span:last-child {
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.menu-note {
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
  grid-column: span 2;
  aspect-ratio: 4 / 3;
}
.gallery-item--wide { grid-column: span 4; aspect-ratio: 16 / 8; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 26px;
  margin: 0;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--brand-red);
}
.review-card p { margin: 0 0 14px; font-style: italic; color: var(--ink); }
.review-card cite { font-weight: 700; color: var(--brand-red-dark); font-style: normal; }
.review-stars { color: #e0a11c; margin-bottom: 10px; }

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.location-info address { font-style: normal; color: var(--ink-soft); margin-bottom: 6px; }
.phone a { font-size: 1.2rem; font-weight: 700; }
.hours-list { list-style: none; margin: 12px 0 0; padding: 0; max-width: 360px; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
}
.location-map {
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #f1e9df;
  padding: 48px 0 20px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
}
.footer-brand { font-family: Georgia, serif; font-size: 1.4rem; margin: 0 0 6px; color: #fff; }
.site-footer a { color: #f1e9df; }
.footer-note {
  text-align: center;
  font-size: 0.85rem;
  color: #a89a8b;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid #3a332b;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 10, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 100;
}
.modal-overlay[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  max-width: 420px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.modal h2 { color: var(--brand-red-dark); font-size: 1.5rem; }
.modal p { color: var(--ink-soft); margin-bottom: 24px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
}
.modal-close:hover { color: var(--brand-red); }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item--wide { grid-column: span 4; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brand-cream);
    flex-direction: column;
    padding: 12px 24px 20px;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .btn-order--nav { display: none; }
  .header-inner { position: relative; }
  .hero h1 { font-size: 2.1rem; }
  .hero-content { padding: 70px 20px 60px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { grid-column: span 2; }
  .gallery-item--wide { grid-column: span 2; }
  .section { padding: 56px 0; }
}
