:root {
  --brand-navy: #0e2a3d;
  --brand-navy-dark: #081b28;
  --brand-teal: #12556b;
  --brand-cream: #faf3e6;
  --brand-cream-2: #f2e8d5;
  --brand-orange: #e8562c;
  --brand-orange-dark: #c8441f;
  --brand-gold: #d69a3e;
  --ink: #1c2b30;
  --ink-soft: #4a5b60;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 30px rgba(14, 42, 61, 0.15);
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--brand-cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  margin: 0;
  color: var(--brand-navy-dark);
}

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

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

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

/* Order Button */
.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-orange);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(232, 86, 44, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-order:hover {
  background: var(--brand-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(232, 86, 44, 0.5);
}
.btn-order:active { transform: translateY(0); }

.btn-order--nav { padding: 10px 24px; font-size: 0.88rem; }
.btn-order--footer { margin-top: 8px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.12); }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(14, 42, 61, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 14px rgba(0,0,0,0.15);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.brand-mark { font-size: 1.4rem; }
.brand-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
}
.brand-name em { font-style: italic; color: var(--brand-gold); }
.brand-name--footer { font-size: 1.4rem; display: block; margin-bottom: 10px; color: #fff; }

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: #eaf1f4;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.9;
  transition: opacity 0.15s;
}
.nav-links a:hover { opacity: 1; color: var(--brand-gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--brand-navy) 0%, var(--brand-teal) 100%), url('../images/photo-06.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,27,40,0.55) 0%, rgba(8,27,40,0.75) 70%, rgba(8,27,40,0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-top: 70px;
  padding-bottom: 70px;
}
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--brand-gold);
  margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  color: #fff;
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 1.15rem;
  color: #dfeaf0;
  max-width: 560px;
  margin: 0 0 34px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #cfe1e9;
}
.stars { color: var(--brand-gold); letter-spacing: 2px; }

/* Sections general */
section { padding: 90px 0; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--brand-orange);
  margin: 0 0 14px;
}
.eyebrow--center { text-align: center; }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
  margin-bottom: 14px;
}
.section-sub {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 50px;
  color: var(--ink-soft);
}

/* About */
.about { background: var(--brand-cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.about-copy h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 20px; }
.about-copy p { color: var(--ink-soft); margin-bottom: 18px; }
.about-copy em { color: var(--brand-navy-dark); font-style: italic; }
.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* Menu */
.menu { background: var(--brand-cream-2); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.menu-category {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
}
.menu-category h3 {
  font-size: 1.25rem;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--brand-cream-2);
  color: var(--brand-teal);
}
.menu-category ul { list-style: none; margin: 0; padding: 0; }
.menu-category li { margin-bottom: 16px; }
.item-name {
  display: block;
  font-weight: 700;
  color: var(--brand-navy-dark);
  margin-bottom: 3px;
}
.item-desc {
  display: block;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

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

/* Reviews */
.reviews { background: var(--brand-navy); }
.reviews .section-title, .reviews .eyebrow { color: #fff; }
.reviews .eyebrow { color: var(--brand-gold); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0;
}
.review-card p {
  color: #e6eef1;
  font-size: 1rem;
  margin: 14px 0;
}
.review-card cite {
  font-weight: 700;
  color: var(--brand-gold);
  font-style: normal;
}

/* Visit */
.visit { background: var(--brand-cream-2); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: start;
}
.visit-info h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 20px; }
.visit-info address {
  font-style: normal;
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.visit-phone { margin-bottom: 26px; }
.visit-phone a {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand-orange);
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.hours-table tr { border-bottom: 1px solid var(--brand-cream-2); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table th, .hours-table td {
  text-align: left;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 0.92rem;
}
.hours-table th { color: var(--brand-navy-dark); }
.hours-table td { color: var(--ink-soft); text-align: right; }
.visit-map iframe {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* Footer */
.site-footer {
  background: var(--brand-navy-dark);
  color: #cfe1e9;
  padding: 60px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 30px;
  align-items: start;
  padding-bottom: 30px;
}
.footer-grid p { margin: 4px 0; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--brand-gold); }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a { font-size: 0.92rem; }
.footer-fine {
  text-align: center;
  font-size: 0.8rem;
  color: #7c93a0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  margin: 0;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 27, 40, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 440px;
  width: 100%;
  padding: 44px 36px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
.modal h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.modal p {
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.modal-phone {
  display: inline-block;
  background: var(--brand-orange);
  color: #fff;
  font-weight: 800;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-size: 1.1rem;
}
.modal-phone:hover { background: var(--brand-orange-dark); }
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
}
.modal-close:hover { color: var(--ink); }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .visit-grid { grid-template-columns: 1fr; gap: 36px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brand-navy-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .btn-order--nav { display: none; }
  section { padding: 60px 0; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 160px; }
  .hero { min-height: 100vh; }
}
