:root {
  --navy: #16324f;
  --navy-dark: #0e2135;
  --cream: #fbf5e9;
  --cream-dark: #f0e6d2;
  --red: #d62d2d;
  --red-dark: #b31f1f;
  --text: #26221c;
  --muted: #5c574d;
  --radius: 14px;
  --max-width: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.2;
  margin: 0 0 16px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
}

section { padding: 72px 0; }

/* ---------- Order Online button ---------- */

.btn-order {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(214, 45, 45, 0.4);
  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(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(214, 45, 45, 0.5);
}

.btn-order-large {
  font-size: 1.15rem;
  padding: 18px 42px;
}

.btn-secondary {
  display: inline-block;
  padding: 18px 36px;
  border-radius: 999px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-secondary:hover {
  background: #fff;
  color: var(--navy);
}

/* ---------- Navbar ---------- */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.05;
}

.brand-mark {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
}

.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dark);
}

.nav-links {
  display: flex;
  gap: 22px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.9;
}

.nav-links a:hover { opacity: 1; text-decoration: underline; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,33,53,0.55) 0%, rgba(14,33,53,0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  color: var(--cream-dark);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 18px;
}

.hero-tagline {
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 32px;
  color: #f2ede0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-rating {
  font-size: 0.95rem;
  color: var(--cream-dark);
}

/* ---------- About ---------- */

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

.about-text p { color: var(--muted); margin-bottom: 18px; }

.about-photo img {
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* ---------- Menu ---------- */

.menu { background: var(--cream-dark); }

.section-sub {
  color: var(--muted);
  margin-top: -8px;
  margin-bottom: 40px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.menu-category {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.menu-category h3 {
  color: var(--red);
  font-size: 1.2rem;
  border-bottom: 2px solid var(--cream-dark);
  padding-bottom: 10px;
}

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

.menu-category li {
  padding: 10px 0;
  border-bottom: 1px solid #f0ece0;
}

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

.menu-category li span {
  display: block;
  font-weight: 600;
  color: var(--navy);
}

.menu-category li small {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 2px;
}

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

/* ---------- Gallery ---------- */

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

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

/* ---------- Reviews ---------- */

.reviews { background: var(--navy); color: #fff; }
.reviews h2 { color: #fff; }
.reviews .section-sub { color: var(--cream-dark); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px;
  margin: 0;
}

.review-card p {
  margin: 0 0 16px;
  font-size: 0.98rem;
  color: #f2ede0;
}

.review-card footer {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--cream-dark);
}

.stars { color: #f5c344; margin-left: 6px; }

/* ---------- Visit ---------- */

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.visit-info address {
  font-style: normal;
  color: var(--muted);
  margin-bottom: 8px;
}

.phone-link {
  color: var(--red);
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
}

.hours-list {
  list-style: none;
  margin: 16px 0 28px;
  padding: 0;
  max-width: 340px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--muted);
}

.hours-list li span:first-child { color: var(--navy); font-weight: 600; }

.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-dark);
  color: var(--cream-dark);
  padding: 48px 0 20px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
}

.footer-brand {
  font-size: 1.15rem;
  display: block;
  margin-bottom: 8px;
}

.footer-grid p { margin: 4px 0; font-size: 0.9rem; }
.footer-grid a { color: var(--cream-dark); text-decoration: none; }

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: #8a93a0;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ---------- Modal ---------- */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14,33,53,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

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

.modal {
  background: #fff;
  border-radius: var(--radius);
  max-width: 420px;
  width: 100%;
  padding: 36px 32px;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.modal h2 { color: var(--navy); }

.modal p { color: var(--muted); margin-bottom: 24px; }

.modal p a { color: var(--red); font-weight: 700; text-decoration: none; }

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

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

.modal-call-btn { display: inline-block; }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .about-grid, .visit-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .navbar-inner { flex-wrap: wrap; }
  .hero { min-height: 100vh; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img { height: 160px; }
  section { padding: 52px 0; }
}
