/* ===== Base ===== */
:root {
  --navy: #0b1220;
  --navy-2: #121b30;
  --navy-3: #1b2740;
  --gold: #c9a24b;
  --gold-light: #e4c878;
  --cream: #f6f1e7;
  --ivory: #fbf8f2;
  --text-dark: #1a1a1a;
  --accent: #e0522a;
  --accent-dark: #b8401e;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow: 0 10px 30px rgba(0,0,0,0.25);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); margin: 0; }
p { line-height: 1.7; margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

.section-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 90px 24px;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent-dark);
  font-weight: 600;
  margin: 0 0 10px;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 30px;
  font-weight: 600;
}

/* ===== Order Online Button (consistent everywhere) ===== */
.btn-order {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(224, 82, 42, 0.4);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn-order:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(224, 82, 42, 0.5);
}
.btn-order-lg {
  font-size: 1.1rem;
  padding: 18px 44px;
}
.btn-ghost {
  display: inline-block;
  padding: 18px 36px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-pill);
  color: #fff;
  font-weight: 500;
  transition: background 0.15s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(11, 18, 32, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 162, 75, 0.25);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--ivory);
}
.brand-main {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
}
.brand-sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--cream);
}
.nav-links {
  display: flex;
  gap: 34px;
}
.nav-links a {
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.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;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, #0b1220 0%, #16223d 55%, #0b1220 100%), url('../images/photo-01.jpg');
  background-size: cover;
  background-position: center 30%;
  background-blend-mode: multiply;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(11,18,32,0.35) 0%, rgba(11,18,32,0.82) 75%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 24px;
  color: var(--ivory);
}
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  color: var(--gold-light);
  margin-bottom: 18px;
  font-weight: 500;
}
.hero h1 {
  font-size: clamp(3.2rem, 9vw, 6rem);
  color: var(--ivory);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--cream);
  max-width: 620px;
  margin: 0 auto 34px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.hero-rating {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  color: var(--cream);
  font-size: 0.95rem;
}
.stars { color: var(--gold-light); letter-spacing: 2px; }

/* ===== About ===== */
.about { background: var(--ivory); }
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.about-text p { color: #3a3a3a; font-size: 1.02rem; }
.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

/* ===== Menu ===== */
.menu {
  background: var(--navy);
  color: var(--cream);
}
.menu .eyebrow { color: var(--gold-light); }
.menu h2 { color: var(--ivory); }
.menu-intro { max-width: 560px; color: rgba(246,241,231,0.75); margin-bottom: 50px; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 60px;
}
.menu-category h3 {
  color: var(--gold-light);
  font-size: 1.5rem;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 162, 75, 0.3);
}
.menu-list li { margin-bottom: 16px; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.menu-item-name { font-weight: 500; color: var(--ivory); font-size: 1.03rem; }
.menu-item-price { color: var(--gold-light); font-weight: 600; white-space: nowrap; }
.menu-item-desc { margin: 4px 0 0; font-size: 0.9rem; color: rgba(246,241,231,0.65); }

/* ===== Gallery ===== */
.gallery { background: var(--ivory); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.generated-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 50%, var(--accent-dark) 130%);
  color: var(--gold-light);
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}
.generated-card-alt {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--navy-3) 60%, var(--navy) 130%);
}
.generated-icon { font-size: 2.2rem; }

/* ===== Reviews ===== */
.reviews { background: var(--cream); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  border-left: 4px solid var(--gold);
}
.review-card p {
  font-style: italic;
  color: #333;
  font-size: 1rem;
}
.review-card cite {
  display: block;
  margin-top: 14px;
  font-weight: 600;
  color: var(--navy);
  font-style: normal;
}

/* ===== Visit ===== */
.visit { background: var(--ivory); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.visit-info h3 {
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.hours-list { margin-bottom: 34px; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 0.98rem;
}
.visit-address { font-size: 1.02rem; color: #333; }
.visit-phone { margin-bottom: 26px; }
.visit-phone a { color: var(--accent-dark); font-weight: 600; font-size: 1.1rem; }
.visit-map iframe {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--navy);
  color: var(--cream);
  padding: 60px 24px 24px;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(201,162,75,0.2);
}
.footer-brand p { margin: 6px 0 0; color: rgba(246,241,231,0.65); font-size: 0.92rem; }
.footer-brand a { color: var(--gold-light); }
.footer-copy {
  text-align: center;
  max-width: 1140px;
  margin: 24px auto 0;
  font-size: 0.82rem;
  color: rgba(246,241,231,0.45);
}

/* ===== Modal ===== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11,18,32,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  max-width: 420px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.modal h3 {
  color: var(--navy);
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.modal p { color: #333; margin: 0; }
.modal p a { color: var(--accent-dark); font-weight: 600; }
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: #888;
  cursor: pointer;
}
.modal-close:hover { color: var(--navy); }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11,18,32,0.97);
    padding: 20px 24px 26px;
    gap: 18px;
  }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .section-inner { padding: 60px 20px; }
}

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