:root {
  --brand-red: #D62828;
  --brand-red-dark: #A81E1E;
  --terracotta: #C1440E;
  --gold: #E9B44C;
  --cream: #FFF8F0;
  --cream-dark: #F3E6D3;
  --dark: #2B1B12;
  --dark-soft: #4A3324;
  --text: #33241a;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(43, 27, 18, 0.15);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--font-display); margin: 0 0 0.5em; color: var(--dark); }
p { margin: 0 0 1em; }
a { color: var(--terracotta); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand-red);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 200;
}
.skip-link:focus { left: 0; }

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
}
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--terracotta);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.center { text-align: center; }
.section-eyebrow.center { display: block; }

/* Order button - the most striking element on the page */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 20px rgba(214, 40, 40, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-order:hover, .btn-order:focus-visible {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(214, 40, 40, 0.55);
}
.btn-order--nav { padding: 0.6rem 1.5rem; font-size: 0.9rem; }
.btn-order--hero { font-size: 1.1rem; padding: 1rem 2.5rem; }
.btn-order--modal { margin-top: 1rem; }

.btn-ghost {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-right: auto;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--dark);
}
.brand-name em { font-style: italic; color: var(--terracotta); }

.site-nav {
  display: flex;
  gap: 1.5rem;
}
.site-nav a {
  color: var(--dark-soft);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}
.site-nav a:hover { color: var(--terracotta); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  display: block;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--cream-dark);
}
.mobile-nav a {
  color: var(--dark-soft);
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 860px) {
  .site-nav { display: none; }
  .btn-order--nav { display: none; }
  .nav-toggle { display: flex; }
}

/* Hero */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 2rem 1.5rem;
}
.hero-content { max-width: 720px; margin: 0 auto; text-align: center; }
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
}
.hero-sub {
  font-size: 1.15rem;
  color: #f2e8dc;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stats div { display: flex; flex-direction: column; align-items: center; }
.hero-stats strong { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); }
.hero-stats span { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: #f2e8dc; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { order: -1; }
}

/* Menu */
.menu { background: var(--cream-dark); }
.menu-note { max-width: 560px; margin: 0 auto 2.5rem; color: var(--dark-soft); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.menu-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.menu-card h3 {
  color: var(--terracotta);
  border-bottom: 2px solid var(--cream-dark);
  padding-bottom: 0.6rem;
  margin-bottom: 1rem;
}
.menu-card ul { list-style: none; margin: 0; padding: 0; }
.menu-card li { margin-bottom: 1rem; }
.menu-card li:last-child { margin-bottom: 0; }
.menu-card li span { display: block; font-weight: 800; color: var(--dark); }
.menu-card li small { display: block; color: var(--dark-soft); font-size: 0.9rem; }
.menu-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--dark-soft);
  margin-top: 2rem;
}
.menu-cta { text-align: center; margin-top: 1rem; }

@media (max-width: 700px) {
  .menu-grid { grid-template-columns: 1fr; }
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pattern-tile {
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(45deg, var(--terracotta) 0 10px, var(--gold) 10px 20px),
    linear-gradient(135deg, var(--brand-red), var(--terracotta));
  background-blend-mode: multiply;
  opacity: 0.9;
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Reviews */
.reviews { background: var(--dark); }
.reviews h2, .reviews .section-eyebrow { color: #fff; }
.reviews .section-eyebrow { color: var(--gold); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.review-card {
  background: var(--dark-soft);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin: 0;
}
.stars { color: var(--gold); letter-spacing: 0.15em; margin-bottom: 0.75rem; }
.review-card blockquote {
  margin: 0 0 1rem;
  color: #f2e8dc;
  font-size: 1.02rem;
}
.review-card figcaption {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
}
@media (max-width: 700px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* Visit */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}
.visit-info address {
  font-style: normal;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--dark-soft);
}
.visit-phone { font-size: 1.15rem; margin-bottom: 1.5rem; }
.visit-phone a { color: var(--terracotta); font-weight: 800; text-decoration: none; }
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 0.6rem 1.25rem;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.95rem;
}
.hours-table th { color: var(--dark); font-weight: 700; }
.hours-table td { color: var(--dark-soft); text-align: right; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }
.visit-map iframe {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
@media (max-width: 860px) {
  .visit-grid { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: #f2e8dc;
  padding-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding-top: 0;
  padding-bottom: 2rem;
}
.footer-tagline { color: #cbb7a4; margin-top: 0.75rem; max-width: 260px; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: #f2e8dc; text-decoration: none; font-weight: 600; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { margin-bottom: 0.5rem; color: #cbb7a4; }
.footer-contact a { color: #f2e8dc; text-decoration: none; font-weight: 700; }
.footer-contact .btn-order { margin-top: 0.75rem; }
.footer-note {
  text-align: center;
  font-size: 0.85rem;
  color: #a68f7b;
  border-top: 1px solid var(--dark-soft);
  padding: 1.25rem;
  margin: 0;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; }
}

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