/* ---------- Variables ---------- */
:root {
  --color-bg: #fbf5ec;
  --color-cream: #fdf9f1;
  --color-ink: #2c1810;
  --color-brown: #4a2c1f;
  --color-terracotta: #b5502e;
  --color-terracotta-dark: #8f3c20;
  --color-gold: #d99a2b;
  --color-order: #e0432b;
  --color-order-dark: #c22f1a;
  --font-display: 'Fraunces', serif;
  --font-body: 'Nunito Sans', sans-serif;
  --radius-lg: 18px;
  --shadow-soft: 0 12px 30px rgba(44, 24, 16, 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 {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  background: #fff;
  padding: 8px 14px;
  z-index: 999;
  border-radius: 8px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--color-brown);
  margin: 0 0 0.5em;
  line-height: 1.15;
}

.eyebrow {
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  font-size: 0.85rem;
  margin: 0 0 0.6em;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-sub {
  max-width: 560px;
  color: #5c4636;
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  font-family: var(--font-body);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-order {
  background: var(--color-order);
  color: #fff;
  padding: 12px 28px;
  font-size: 1rem;
  box-shadow: 0 6px 18px rgba(224, 67, 43, 0.45);
}
.btn-order:hover {
  background: var(--color-order-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(224, 67, 43, 0.55);
}
.btn-lg {
  padding: 16px 38px;
  font-size: 1.1rem;
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.85);
  padding: 14px 34px;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 249, 241, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 14px rgba(44,24,16,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--color-terracotta-dark);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: var(--color-brown);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--color-terracotta); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--color-brown);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.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(44,24,16,0.55) 0%, rgba(44,24,16,0.72) 55%, rgba(24,12,8,0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 24px;
  max-width: 760px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 0.4em;
}
.hero .eyebrow { color: var(--color-gold); }
.hero-sub {
  font-size: 1.15rem;
  color: #f3e9dc;
  max-width: 560px;
  margin-bottom: 2em;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 2em;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #f3e9dc;
}
.stars {
  color: var(--color-gold);
  letter-spacing: 2px;
}

/* ---------- About ---------- */
.about { padding: 100px 0; background: var(--color-cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-img-sub {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 6px solid var(--color-cream);
  box-shadow: var(--shadow-soft);
}
.about-copy p { color: #5c4636; font-size: 1.05rem; }
.about-copy h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }

/* ---------- Menu ---------- */
.menu { padding: 100px 0; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}
.menu-category {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
.menu-category h3 {
  color: var(--color-terracotta-dark);
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 12px;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.menu-category ul { list-style: none; margin: 0; padding: 0; }
.menu-category li {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.menu-category li:last-child { margin-bottom: 0; }
.item-name {
  font-weight: 800;
  color: var(--color-brown);
  font-size: 1.05rem;
}
.item-desc {
  color: #6b5646;
  font-size: 0.95rem;
}
.menu-note {
  text-align: center;
  color: #8a7364;
  font-style: italic;
  margin-top: 40px;
  font-size: 0.95rem;
}

/* ---------- Gallery ---------- */
.gallery { padding: 100px 0; background: var(--color-cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 50px;
}
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.04); }

/* ---------- Reviews ---------- */
.reviews { padding: 100px 0; }
.reviews-summary {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 50px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-card p {
  color: #4a3a2e;
  font-size: 0.98rem;
  margin: 0;
}
.review-card cite {
  font-weight: 800;
  color: var(--color-terracotta-dark);
  font-style: normal;
}

/* ---------- Location ---------- */
.location { padding: 100px 0; background: var(--color-cream); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.location-info address {
  font-style: normal;
  font-size: 1.1rem;
  color: var(--color-brown);
  margin-bottom: 10px;
}
.phone-line { margin-bottom: 24px; }
.phone-line a {
  color: var(--color-terracotta);
  font-weight: 800;
  font-size: 1.2rem;
  text-decoration: none;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 10px 18px;
  border-bottom: 1px solid #ece1d3;
  font-weight: 600;
  color: var(--color-brown);
}
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }
.hours-table td { text-align: right; color: #6b5646; font-weight: 700; }
.hours-note {
  font-style: italic;
  color: #8a7364;
  margin-bottom: 24px;
}
.location-map iframe {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-brown);
  color: #f3e9dc;
  padding: 50px 0 20px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-brand .logo { color: #fff; }
.footer-brand .logo span { color: var(--color-gold); }
.footer-brand p { margin: 4px 0; color: #e5d7c5; }
.footer-brand a { color: #e5d7c5; text-decoration: none; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a { color: #f3e9dc; text-decoration: none; font-weight: 600; }
.footer-nav a:hover { color: var(--color-gold); }
.footer-bottom {
  padding-top: 20px;
  font-size: 0.85rem;
  color: #cbb8a4;
  text-align: center;
}

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(24, 12, 8, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  text-align: center;
}
.modal h2 {
  color: var(--color-terracotta-dark);
  margin-bottom: 0.6em;
}
.modal p {
  color: #4a3a2e;
  margin-bottom: 1.6em;
}
.modal p a { color: var(--color-terracotta); font-weight: 800; text-decoration: none; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #8a7364;
  line-height: 1;
}
.modal-close:hover { color: var(--color-terracotta); }
.modal-call-btn { width: 100%; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .about-img-sub { position: static; width: 100%; margin-top: 20px; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-cream);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: var(--shadow-soft);
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding: 70px 24px; }
  .header-inner .btn-order { padding: 10px 18px; font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}
