:root {
  --navy: #0d1b2a;
  --navy-deep: #060f18;
  --charcoal: #1b1b1b;
  --cream: #f6ecd9;
  --ember: #d64526;
  --ember-dark: #b6371c;
  --gold: #d9a441;
  --text-dark: #201a14;
  --font-head: 'Oswald', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Merriweather', Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--font-head); margin: 0 0 0.5em; text-transform: uppercase; letter-spacing: 0.03em; }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }
.section-inner { max-width: 1140px; margin: 0 auto; padding: 80px 24px; }
.section-kicker {
  color: var(--ember);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.5em;
}

/* Buttons */
.btn-order {
  display: inline-block;
  background: var(--ember);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 999px;
  padding: 16px 36px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(214, 69, 38, 0.4);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn-order:hover {
  background: var(--ember-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(214, 69, 38, 0.5);
}
.btn-order--nav { padding: 10px 24px; font-size: 0.9rem; }
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  border: 2px solid var(--cream);
  border-radius: 999px;
  color: var(--cream);
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
}
.btn-secondary:hover { background: rgba(246, 236, 217, 0.12); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-right: auto;
  color: var(--cream);
}
.brand-mark { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; letter-spacing: 0.06em; color: var(--gold); }
.brand-sub { font-family: var(--font-head); font-size: 0.65rem; letter-spacing: 0.25em; color: var(--cream); }
.main-nav { display: flex; gap: 28px; }
.main-nav a {
  color: var(--cream);
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  opacity: 0.85;
}
.main-nav a:hover { opacity: 1; color: var(--gold); }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--cream); }

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,15,24,0.75) 0%, rgba(6,15,24,0.55) 40%, rgba(6,15,24,0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  color: var(--cream);
}
.hero-kicker {
  font-family: var(--font-head);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1em;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  color: #fff;
  margin-bottom: 0.6em;
}
.hero-tagline {
  font-size: 1.15rem;
  margin-bottom: 2em;
  color: rgba(246,236,217,0.92);
}
.hero-cta-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 1.8em;
}
.hero-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--gold);
}
.stars { color: var(--gold); letter-spacing: 2px; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: start;
}
.about-copy h2 { color: var(--navy); font-size: clamp(1.6rem, 3vw, 2.2rem); }
.about-copy p { margin-bottom: 1.2em; }
.about-media { display: grid; gap: 16px; }
.about-media img { border-radius: 10px; box-shadow: 0 12px 28px rgba(0,0,0,0.18); }

/* Menu */
.menu { background: var(--navy); color: var(--cream); }
.menu h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.menu-intro { max-width: 640px; opacity: 0.85; margin-bottom: 2.5em; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
.menu-category h3 {
  color: var(--gold);
  font-size: 1.1rem;
  border-bottom: 2px solid rgba(217, 164, 65, 0.4);
  padding-bottom: 10px;
  margin-bottom: 16px;
}
.menu-category li {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.item-name { font-family: var(--font-head); font-weight: 600; letter-spacing: 0.02em; }
.item-desc { font-size: 0.9rem; opacity: 0.75; margin-top: 2px; }
.menu-note { margin-top: 2.5em; font-size: 0.85rem; opacity: 0.6; font-style: italic; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* Reviews */
.reviews { background: var(--cream); }
.reviews h2 { color: var(--navy); }
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2.5em;
  font-family: var(--font-head);
  color: var(--navy);
}
.reviews-summary .stars { color: var(--ember); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px;
  margin: 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  border-top: 3px solid var(--ember);
}
.review-card .stars { color: var(--ember); display: block; margin-bottom: 10px; }
.review-card p { font-size: 0.95rem; margin: 0 0 14px; }
.review-card cite { font-family: var(--font-head); font-style: normal; font-size: 0.85rem; color: var(--navy); opacity: 0.8; }

/* Visit */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}
.visit-info h2 { color: var(--navy); font-size: clamp(1.6rem, 3vw, 2.2rem); }
.visit-block { margin-bottom: 1.8em; }
.visit-block h3 { font-size: 1rem; color: var(--ember); margin-bottom: 0.6em; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 0.95rem;
}
.visit-info a { color: var(--ember); font-weight: 700; }
.visit-map { min-height: 360px; border-radius: 10px; overflow: hidden; box-shadow: 0 12px 28px rgba(0,0,0,0.15); }
.visit-map iframe { width: 100%; height: 100%; min-height: 360px; }

/* Footer */
.site-footer { background: var(--navy-deep); color: var(--cream); padding-top: 10px; }
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 30px;
}
.footer-brand p { margin: 4px 0; opacity: 0.75; font-size: 0.9rem; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; font-family: var(--font-head); font-size: 0.85rem; text-transform: uppercase; }
.footer-links a { opacity: 0.75; }
.footer-links a:hover { opacity: 1; color: var(--gold); }
.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
  padding: 16px 24px 28px;
  margin: 0;
  border-top: 1px solid rgba(246,236,217,0.1);
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 15, 24, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: var(--cream);
  border-radius: 14px;
  max-width: 440px;
  width: 100%;
  padding: 40px 32px;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.modal h2 { color: var(--navy); font-size: 1.4rem; margin-bottom: 0.6em; }
.modal p { margin-bottom: 1.6em; }
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--navy);
  opacity: 0.6;
}
.modal-close:hover { opacity: 1; }
.modal-call { width: 100%; }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .visit-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { flex-wrap: wrap; }
  body.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 16px 24px 24px;
    gap: 16px;
  }
  .hero-cta-row { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 160px; }
  .section-inner { padding: 56px 20px; }
}
