/* ---------- Base ---------- */
:root {
  --navy: #0b2f4a;
  --navy-dark: #071f31;
  --teal: #12768a;
  --cream: #fdf6e9;
  --cream-alt: #f6ecd9;
  --sand: #e8dcc0;
  --ink: #22303c;
  --orange: #ff6a1a;
  --orange-dark: #e6560c;
  --radius-pill: 999px;
  --shadow: 0 10px 30px rgba(11, 47, 74, 0.15);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--navy);
}

p { margin: 0 0 1em; }

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

a { color: var(--teal); text-decoration: none; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: bold;
  color: var(--orange-dark);
  margin-bottom: 0.4em;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.7em 1.6em;
  border-radius: var(--radius-pill);
  font-weight: bold;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-family: inherit;
}

.btn-order {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 16px rgba(255, 106, 26, 0.45);
}

.btn-order:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 106, 26, 0.55);
}

.btn-lg {
  padding: 0.95em 2.2em;
  font-size: 1.1rem;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 20px;
}

.logo {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
}

.logo span { color: var(--orange); }

.main-nav {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  color: #dfe9ef;
  font-weight: bold;
  font-size: 0.95rem;
}

.main-nav a:hover { color: var(--orange); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: url('../images/photo-01.jpg') center center / cover no-repeat;
  min-height: 620px;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 31, 49, 0.75), rgba(7, 31, 49, 0.55) 50%, rgba(7, 31, 49, 0.88));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 80px 20px;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: bold;
  color: var(--orange);
  font-size: 0.85rem;
}

.hero h1 {
  color: #fff;
  font-size: 2.6rem;
  margin-bottom: 0.5em;
}

.hero-sub {
  font-size: 1.15rem;
  color: #eef3f6;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 30px 0 20px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #f2e9d8;
}

.stars, .review-stars { color: var(--orange); letter-spacing: 2px; }

/* ---------- About ---------- */
.about { padding: 80px 0; background: var(--cream); }

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

.about-img img {
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.about-copy h2 { font-size: 2rem; }

/* ---------- Menu ---------- */
.menu { padding: 80px 0; background: var(--cream-alt); }

.menu h2 { font-size: 2rem; margin-bottom: 40px; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.menu-category h3 {
  border-bottom: 3px solid var(--orange);
  padding-bottom: 10px;
  margin-bottom: 16px;
  font-size: 1.35rem;
}

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

.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px dashed var(--sand);
}

.item-name { font-weight: bold; color: var(--navy); }

.item-desc { color: #5b6672; font-size: 0.92rem; }

.menu-note {
  text-align: center;
  margin-top: 30px;
  color: #5b6672;
  font-size: 0.95rem;
}

/* ---------- Gallery ---------- */
.gallery { padding: 80px 0; background: var(--cream); }

.gallery h2 { margin-bottom: 40px; }

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

.gallery-grid img {
  border-radius: 10px;
  height: 190px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.gallery-grid img:hover { transform: scale(1.03); }

/* ---------- Reviews ---------- */
.reviews { padding: 80px 0; background: var(--navy); }

.reviews h2 { color: #fff; margin-bottom: 40px; }

.reviews .section-eyebrow { color: var(--orange); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.review-text { font-style: italic; color: var(--ink); }

.review-author { font-weight: bold; color: var(--teal); margin: 0; }

/* ---------- Hours & Location ---------- */
.hours-location { padding: 80px 0; background: var(--cream-alt); }

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.hours-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.hours-list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}

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

.address, .phone { font-size: 1.05rem; }

.phone a { color: var(--navy); font-weight: bold; }

.map-embed {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 400px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: #cfd9e0;
  padding: 50px 0 20px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo { color: #fff; }

.footer-brand p { margin: 4px 0; color: #b7c2cb; }

.footer-brand a { color: #b7c2cb; }

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

.footer-links a { color: #cfd9e0; }

.footer-links a:hover { color: var(--orange); }

.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  color: #7f8d97;
  margin: 20px 0 0;
}

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 31, 49, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

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

.modal {
  background: #fff;
  border-radius: 14px;
  padding: 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.modal h2 { font-size: 1.5rem; }

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #8a97a1;
}

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

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

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 10px 20px 20px;
    display: none;
    gap: 14px;
  }

  .main-nav.open { display: flex; }

  .nav-toggle { display: flex; }

  .header-inner .btn-order { display: none; }

  .hero h1 { font-size: 2rem; }

  .hero-content { padding: 60px 20px; }
}

@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
