/* ---------- Base ---------- */
:root {
  --brand-red: #c1272d;
  --brand-red-dark: #9e1e23;
  --navy: #1e2a3a;
  --navy-light: #2b3c52;
  --cream: #fdf6ec;
  --cream-2: #f7ecd8;
  --text: #262019;
  --text-light: #5c5348;
  --gold: #e0a940;
  --radius: 14px;
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 { font-family: var(--font-head); margin: 0 0 0.5em; color: var(--navy); }

p { margin: 0 0 1em; }

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

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

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

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

.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  text-align: center;
  padding: 12px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-size: 0.95rem;
}

.btn--order {
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 6px 18px rgba(193, 39, 45, 0.4);
}

.btn--order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(193, 39, 45, 0.5);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

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

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

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.15);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.navbar__brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
}

.navbar__brand span { color: var(--gold); }

.navbar__nav {
  display: flex;
  gap: 28px;
}

.navbar__nav a {
  color: #f1e9d8;
  font-weight: 500;
  font-size: 0.95rem;
}

.navbar__nav a:hover { color: var(--gold); }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.navbar__toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: url('../images/photo-07.jpg') center/cover no-repeat, var(--navy);
  color: #fff;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 24, 32, 0.75), rgba(20, 24, 32, 0.55) 45%, rgba(20, 24, 32, 0.9));
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--gold);
  font-size: 0.85rem;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 0.4em;
}

.hero__tagline {
  font-size: 1.15rem;
  color: #ece4d4;
  max-width: 560px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0 24px;
}

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

.stars { color: var(--gold); letter-spacing: 2px; }

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

.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.about__text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }

.about__text p { color: var(--text-light); }

.about__photo img {
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(30, 20, 10, 0.18);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.menu h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }

.menu__intro {
  max-width: 620px;
  margin: 0 auto 50px;
  color: var(--text-light);
}

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

.menu__category {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 10px 30px rgba(30, 20, 10, 0.08);
}

.menu__category h3 {
  font-size: 1.15rem;
  color: var(--brand-red);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 10px;
  margin-bottom: 16px;
}

.menu__spacer { margin-top: 26px; }

.menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu__list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed #e5d9c2;
  font-weight: 500;
}

.menu__list li:last-child { border-bottom: none; }

.menu__price {
  color: var(--brand-red);
  font-weight: 700;
  white-space: nowrap;
}

.menu__note {
  text-align: center;
  margin-top: 40px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.menu__note a { color: var(--brand-red); font-weight: 600; }

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

.gallery h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 44px; }

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

.gallery__grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.25s ease;
}

.gallery__grid img:hover { transform: scale(1.03); }

/* ---------- Reviews ---------- */
.reviews { padding: 90px 0; background: var(--navy); color: #fff; }

.reviews h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 44px; }

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

.review-card {
  background: var(--navy-light);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0;
}

.review-card blockquote {
  margin: 14px 0 16px;
  font-size: 0.98rem;
  color: #ece4d4;
}

.review-card figcaption {
  font-weight: 700;
  color: var(--gold);
}

/* ---------- Visit / Hours ---------- */
.visit { padding: 90px 0; background: var(--cream-2); }

.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.visit__info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }

.visit__info address {
  font-style: normal;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.visit__phone {
  display: inline-block;
  font-weight: 700;
  color: var(--brand-red);
  font-size: 1.2rem;
  margin-bottom: 26px;
}

.hours {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(30, 20, 10, 0.08);
}

.hours th, .hours td {
  text-align: left;
  padding: 10px 18px;
  font-weight: 500;
  border-bottom: 1px solid #eee1c9;
}

.hours th { color: var(--navy); font-weight: 700; }

.hours tr:last-child th, .hours tr:last-child td { border-bottom: none; }

.visit__map {
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(30, 20, 10, 0.12);
}

.visit__map iframe { width: 100%; height: 100%; }

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

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

.footer__logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: #fff;
  margin: 0 0 6px;
}

.footer__logo span { color: var(--gold); }

.footer__brand p { margin: 0 0 4px; font-size: 0.9rem; color: #cfc3ac; }

.footer__brand a { color: #cfc3ac; }

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

.footer__nav a { color: #f1e9d8; font-size: 0.9rem; }

.footer__nav a:hover { color: var(--gold); }

.footer__copy {
  text-align: center;
  font-size: 0.8rem;
  color: #9aa3ae;
  margin: 20px 0 0;
}

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

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

.modal {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius);
  max-width: 440px;
  width: 100%;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

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

.modal p { color: var(--text-light); }

.modal p a { color: var(--brand-red); font-weight: 700; }

.modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-light);
}

.modal .btn--order { margin-top: 10px; border: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about__grid, .visit__grid { grid-template-columns: 1fr; }
  .menu__grid { grid-template-columns: 1fr 1fr; }
  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .navbar__nav { display: none; }
  .navbar__toggle { display: flex; }
  .navbar.nav-open .navbar__nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 20px 24px;
    gap: 16px;
  }
  .menu__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { text-align: center; }
  .footer__inner { flex-direction: column; text-align: center; }
}
