/* ---------- Base ---------- */
:root {
  --brand-red: #C81E2C;
  --brand-red-dark: #971520;
  --brand-blue: #1E5AA8;
  --brand-blue-dark: #123B72;
  --brand-gold: #F2A900;
  --brand-teal: #0E7C86;
  --ink: #201A12;
  --cream: #FFF8ED;
  --cream-dark: #F7E9CE;
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

a { color: inherit; text-decoration: none; }

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

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--brand-teal);
  font-size: 0.85rem;
  margin-bottom: 0.5em;
}

.section-head { max-width: 640px; margin: 0 auto 2.5rem; text-align: center; }
.section-head h2 { font-size: 2rem; }
.section-head p { color: #5a4a3c; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.9rem 2rem;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-order {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 0.9rem 2.1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(200, 30, 44, 0.45);
}
.btn-order:hover, .btn-order:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(200, 30, 44, 0.55);
  background: linear-gradient(135deg, var(--brand-red-dark), #6f1017);
}

.btn-light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-light:hover { background: rgba(255,255,255,0.22); }

.btn-outline {
  background: transparent;
  color: var(--brand-blue);
  border: 2px solid var(--brand-blue);
}
.btn-outline:hover { background: var(--brand-blue); color: #fff; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--brand-blue-dark);
  color: #f0e6d6;
  font-size: 0.85rem;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 24px;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topbar a { color: var(--brand-gold); font-weight: 600; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(18, 59, 114, 0.97);
  backdrop-filter: blur(6px);
}
.nav .wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem 24px;
}
.brand {
  color: #fff;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-right: auto;
}
.brand span { color: var(--brand-gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a:not(.btn) {
  color: #f0e6d6;
  font-size: 0.95rem;
  font-weight: 600;
}
.nav-links a:not(.btn):hover { color: var(--brand-gold); }
.nav-links .btn-order { padding: 0.65rem 1.5rem; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 0.5rem;
}
.nav-toggle span { width: 26px; height: 3px; background: #fff; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(18,32,54,0.82) 0%, rgba(18,59,114,0.6) 45%, rgba(15,15,10,0.92) 100%),
    url('../images/photo-01.jpg') center 35% / cover no-repeat;
}
.hero .wrap { width: 100%; }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 0;
  text-align: center;
  color: #fff;
}
.hero .eyebrow { color: var(--brand-gold); }
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  margin-bottom: 1rem;
}
.hero-lede {
  font-size: 1.15rem;
  color: #f2e6dc;
  margin-bottom: 1.75rem;
}
.hero-badges {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: #f2e6dc;
}
.hero-badges span {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 0.45rem 1rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- About ---------- */
.about { padding: 5rem 0; background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}
.about-copy h2 { font-size: 2rem; }
.about-copy p { margin-bottom: 1.1rem; color: #4a3a2c; }
.about-stats {
  display: grid;
  gap: 1.25rem;
}
.stat-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border-top: 4px solid var(--brand-teal);
  text-align: center;
}
.stat-card h4 { color: var(--brand-red); font-size: 1.4rem; margin-bottom: 0.35rem; }
.stat-card p { margin: 0; color: #5a4a3c; font-size: 0.9rem; }

/* ---------- Menu ---------- */
.menu { padding: 5rem 0; background: var(--cream-dark); }
.menu-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.menu-group {
  background: #fff;
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border-top: 4px solid var(--brand-teal);
}
.menu-group h3 {
  font-size: 1.2rem;
  color: var(--brand-red);
  margin-bottom: 1rem;
}
.menu-item { padding: 0.65rem 0; border-bottom: 1px dashed #e2d2b4; }
.menu-item:last-child { border-bottom: none; }
.menu-item h5 { margin: 0 0 0.25rem; font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; }
.menu-item p { margin: 0; color: #5a4a3c; font-size: 0.92rem; }
.menu-note { text-align: center; margin-top: 2rem; font-size: 0.85rem; color: #7a6a5a; }

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

/* ---------- Reviews ---------- */
.reviews { padding: 5rem 0; background: var(--cream-dark); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.stars { color: var(--brand-gold); font-size: 1.1rem; margin-bottom: 0.75rem; display: block; }
.review-card p { color: #4a3a2c; margin: 0 0 0.75rem; font-style: italic; }
.review-card cite { font-weight: 700; font-style: normal; color: var(--brand-red); }

/* ---------- Visit / Contact ---------- */
.contact { padding: 5rem 0; background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}
.contact-details p { color: #4a3a2c; }
.contact-list { list-style: none; margin: 1rem 0 1.5rem; padding: 0; }
.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px dashed #e2d2b4;
  font-size: 0.95rem;
}
.contact-list .day { font-weight: 700; }
.map-frame {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* ---------- Footer ---------- */
footer { background: var(--brand-blue-dark); color: #f0e6d6; padding: 3rem 0; }
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.foot-brand { font-family: 'Fraunces', serif; font-size: 1.2rem; color: #fff; margin-bottom: 0.4rem; }
footer a { color: var(--brand-gold); }
footer p { margin: 0.25rem 0; font-size: 0.9rem; }

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 900;
  text-align: center;
}

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15,15,10,0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1.5rem;
}
.modal-backdrop.open { display: flex; }
.modal-card {
  background: #fff;
  border-radius: 16px;
  max-width: 440px;
  width: 100%;
  padding: 2.5rem 2rem 2rem;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.modal-card h2 { color: var(--brand-red); font-size: 1.5rem; }
.modal-card p { color: #4a3a2c; margin-bottom: 1.5rem; }
.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #999;
}
.modal-close:hover { color: var(--brand-red); }
.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

@media (max-width: 720px) {
  .topbar .wrap { justify-content: center; text-align: center; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(18, 59, 114, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem;
    gap: 1rem;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links .btn-order { text-align: center; }
  .nav-toggle { display: flex; }
  footer .wrap { flex-direction: column; text-align: center; }
  .mobile-cta { display: block; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
}
