/* ---------- Base ---------- */
:root {
  --color-bg: #fdfaf5;
  --color-ink: #201a17;
  --color-ink-soft: #55483f;
  --color-brand: #c0392b;
  --color-brand-dark: #9c2b20;
  --color-accent: #d4a94a;
  --color-card: #ffffff;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Manrope', sans-serif;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(32, 26, 23, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  margin: 0 0 16px;
  line-height: 1.15;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-brand);
  margin-bottom: 8px;
}

.section-sub {
  color: var(--color-ink-soft);
  max-width: 560px;
  margin: 0 auto 40px;
}

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

section { padding: 88px 0; }

/* ---------- Order button ---------- */
.btn-order {
  display: inline-block;
  background: var(--color-brand);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 34px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(192, 57, 43, 0.35);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
}

.btn-order:hover {
  background: var(--color-brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(192, 57, 43, 0.45);
}

.btn-order--nav { padding: 10px 24px; font-size: 0.92rem; }

.btn-secondary {
  display: inline-block;
  padding: 16px 30px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-secondary:hover { background: #fff; color: var(--color-ink); }

.btn-order--footer { margin-top: 16px; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253, 250, 245, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.navbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-ink);
  text-decoration: none;
  white-space: nowrap;
}
.brand span { color: var(--color-brand); }

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: var(--color-ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--color-brand); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-ink);
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,14,11,0.55) 0%, rgba(20,14,11,0.65) 55%, rgba(20,14,11,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 24px;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

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

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.6rem;
  z-index: 2;
  text-decoration: none;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-text p { color: var(--color-ink-soft); margin-bottom: 18px; }

.about-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}

/* ---------- Menu ---------- */
.menu { background: #fff5e9; }

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

.menu-category h3 {
  font-size: 1.4rem;
  color: var(--color-brand);
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.menu-category ul { list-style: none; margin: 0; padding: 0; }
.menu-category li { margin-bottom: 20px; }

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-weight: 700;
}

.item-name { font-size: 1.05rem; }
.item-price { color: var(--color-brand); white-space: nowrap; }
.item-desc { margin: 4px 0 0; color: var(--color-ink-soft); font-size: 0.92rem; }

.menu-cta { text-align: center; margin-top: 56px; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.3s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

.gallery-gen {
  height: 220px;
  border-radius: var(--radius);
  background: repeating-linear-gradient(135deg, var(--color-brand) 0 18px, var(--color-accent) 18px 36px);
  opacity: 0.85;
}

/* ---------- Reviews ---------- */
.reviews { background: #fff5e9; }

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

.review-card {
  background: var(--color-card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.review-card p:first-of-type { margin: 12px 0 16px; color: var(--color-ink-soft); font-style: italic; }
.review-author { font-weight: 700; margin: 0; color: var(--color-ink); }

/* ---------- Visit ---------- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}

.hours-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  border-top: 1px solid #e6dccc;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e6dccc;
  color: var(--color-ink-soft);
}
.hours-list li span:first-child { font-weight: 700; color: var(--color-ink); }

.visit-address { font-weight: 600; margin-bottom: 4px; }
.visit-phone { margin-bottom: 28px; }
.visit-phone a { color: var(--color-brand); font-weight: 700; text-decoration: none; font-size: 1.15rem; }

.visit-map {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-ink);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 32px;
  align-items: start;
}

.footer-brand { color: #fff; font-size: 1.3rem; margin-bottom: 10px; }
.footer a { color: rgba(255,255,255,0.8); text-decoration: none; }
.footer a:hover { color: var(--color-accent); }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-copy {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin: 40px 0 0;
}

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

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

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

.modal h2 { color: var(--color-brand); font-size: 1.6rem; }
.modal p { color: var(--color-ink-soft); margin-bottom: 26px; }

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--color-ink-soft);
  cursor: pointer;
}
.modal-close:hover { color: var(--color-ink); }

.btn-order--modal { width: 100%; }

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

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 12px 20px rgba(0,0,0,0.08);
    display: none;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .btn-order--nav { display: none; }
  section { padding: 64px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

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