/* ===== Reset & Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --color-cream: #FBF3E7;
  --color-cream-dark: #F3E6D0;
  --color-brown: #3B2418;
  --color-brown-light: #5B3B29;
  --color-terracotta: #B85C38;
  --color-green: #4B6650;
  --color-orange: #E85D2A;
  --color-orange-dark: #C8481D;
  --color-gold: #D9A441;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-brown);
  background: var(--color-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}

.section-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-terracotta);
  margin-bottom: 0.5rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-orange);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* ===== Order Button ===== */
.btn-order {
  display: inline-block;
  background: var(--color-orange);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 6px 18px rgba(232, 93, 42, 0.4);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn-order:hover, .btn-order:focus-visible {
  background: var(--color-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(232, 93, 42, 0.5);
}
.btn-order-lg {
  font-size: 1.15rem;
  padding: 1.1rem 2.75rem;
}

.btn-secondary {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  padding: 1rem 2.25rem;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-secondary:hover {
  background: #fff;
  color: var(--color-brown);
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-cream);
  border-bottom: 3px solid var(--color-terracotta);
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-right: auto;
}
.brand-mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--color-brown);
}
.brand-sub {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  font-weight: 700;
}
.main-nav {
  display: flex;
  gap: 1.75rem;
}
.main-nav a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-brown-light);
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.main-nav a:hover {
  color: var(--color-orange-dark);
  border-color: var(--color-orange);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-brown);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(160deg, rgba(59,36,24,0.35), rgba(59,36,24,0.75)),
    url('../images/photo-04.jpg') center 65%/cover no-repeat;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(217,164,65,0.18), transparent 55%);
}
.hero-content {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.75rem;
  text-align: center;
}
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  margin-bottom: 1.25rem;
  text-shadow: 0 3px 18px rgba(0,0,0,0.35);
}
.hero-tagline {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2.25rem;
  color: #F6EAD9;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-text h2 { font-size: 2.1rem; margin-bottom: 1.1rem; }
.about-text p { margin-bottom: 1rem; color: var(--color-brown-light); }
.about-image img {
  border-radius: 18px;
  box-shadow: 0 20px 40px -20px rgba(59,36,24,0.5);
}

/* ===== Menu ===== */
.menu { background: var(--color-cream-dark); }
.menu h2 { font-size: 2.1rem; margin-bottom: 0.5rem; }
.menu-note { color: var(--color-brown-light); margin-bottom: 2.5rem; max-width: 640px; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
}
.menu-category h3 {
  font-size: 1.3rem;
  color: var(--color-terracotta);
  border-bottom: 2px solid var(--color-terracotta);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.menu-category ul { list-style: none; }
.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(59,36,24,0.15);
}
.menu-category li:last-child { border-bottom: none; }
.dish { font-weight: 800; font-size: 1.02rem; }
.desc { color: var(--color-brown-light); font-size: 0.92rem; }

/* ===== Gallery ===== */
.gallery h2 { font-size: 2.1rem; margin-bottom: 2rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.04); }

/* ===== Reviews ===== */
.reviews { background: var(--color-brown); color: #F6EAD9; }
.reviews h2 { font-size: 2.1rem; margin-bottom: 2.5rem; color: #fff; }
.reviews .section-kicker { color: var(--color-gold); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 1.75rem;
}
.stars { color: var(--color-gold); letter-spacing: 0.15em; margin-bottom: 0.75rem; }
.review-card p { margin-bottom: 1rem; font-size: 1rem; }
.review-card cite { font-weight: 700; color: var(--color-gold); font-style: normal; }
.rating-summary {
  margin-top: 2.5rem;
  text-align: center;
  font-weight: 700;
  color: var(--color-gold);
}

/* ===== Hours & Location ===== */
.hours-location h2 { font-size: 2.1rem; margin-bottom: 1.5rem; }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.hours-list { list-style: none; margin-bottom: 1.5rem; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(59,36,24,0.15);
  font-weight: 600;
}
.hours-list li span:first-child { color: var(--color-brown-light); }
address { font-style: normal; margin-bottom: 0.5rem; line-height: 1.5; }
.phone-line { margin-bottom: 1.5rem; font-weight: 700; }
.phone-line a { color: var(--color-terracotta); }
.map-block iframe {
  border-radius: 14px;
  box-shadow: 0 20px 40px -20px rgba(59,36,24,0.4);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-brown);
  color: #F6EAD9;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding-bottom: 2rem;
}
.footer-brand {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.5rem;
  display: block;
}
.footer-grid p { color: #D9C7B0; margin-top: 0.25rem; }
.footer-grid a { color: var(--color-gold); }
.footer-hours h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}
.footer-cta { text-align: right; }
.footer-copyright {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.85rem;
  color: #B79A7C;
}

/* ===== Modal ===== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(59,36,24,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1.5rem;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  position: relative;
  background: var(--color-cream);
  border-radius: 16px;
  max-width: 420px;
  width: 100%;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
}
.modal h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-brown);
}
.modal p { color: var(--color-brown-light); margin-bottom: 1.5rem; }
.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--color-brown-light);
  cursor: pointer;
}
.modal-close:hover { color: var(--color-orange-dark); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-grid, .hours-grid { grid-template-columns: 1fr; }
  .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: center; }
  .footer-cta { text-align: center; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-cream);
    flex-direction: column;
    gap: 0;
    border-bottom: 3px solid var(--color-terracotta);
    padding: 0.5rem 1.5rem;
  }
  .main-nav[hidden] { display: none; }
  .main-nav a { padding: 0.85rem 0; border-bottom: 1px solid rgba(59,36,24,0.1); }
  .hamburger { display: flex; }
  .btn-order#order-btn-nav { display: none; }
  .hero { min-height: 78vh; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

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