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

:root {
  --color-cream: #faf5ec;
  --color-cream-dark: #f1e7d5;
  --color-ink: #2b2422;
  --color-ink-soft: #4a3f3a;
  --color-olive: #6b7a4a;
  --color-terracotta: #b5482f;
  --color-gold: #c99a3c;
  --color-red: #c1272d;
  --color-red-dark: #9a1e23;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-soft: 0 10px 30px rgba(43, 36, 34, 0.12);
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

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

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: 0;
  background: var(--color-red);
  color: #fff;
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus { left: 8px; top: 8px; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-ink);
}

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

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-order {
  background: var(--color-red);
  color: #fff;
  padding: 16px 36px;
  border-radius: 999px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(193, 39, 45, 0.4);
}
.btn-order:hover {
  background: var(--color-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(193, 39, 45, 0.5);
}

.btn-order--nav {
  padding: 12px 26px;
  font-size: 0.95rem;
}

.btn-order--hero {
  font-size: 1.15rem;
  padding: 18px 42px;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 16px 34px;
  border-radius: 999px;
  font-size: 1.05rem;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
}

.btn-order--location { margin-top: 24px; }

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

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-ink);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-terracotta);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
}

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

.nav-links a {
  color: var(--color-ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--color-terracotta); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--color-ink);
}

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

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

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  text-align: center;
}

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

.hero-content h1 {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-tagline {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
  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;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

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

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

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

.about-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 22px; }
.about-text p { margin-bottom: 18px; color: var(--color-ink-soft); }

.about-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ---- Menu ---- */
.menu { padding: 100px 0; background: var(--color-cream-dark); }
.menu h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }

.menu-intro {
  max-width: 640px;
  margin: 0 auto 56px;
  color: var(--color-ink-soft);
}

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

.menu-category {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

.menu-category h3 {
  font-size: 1.4rem;
  color: var(--color-terracotta);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--color-cream-dark);
}

.menu-items { list-style: none; }
.menu-items li {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(43,36,34,0.12);
}
.menu-items li:last-child { border-bottom: none; }

.menu-item-name {
  font-weight: 700;
  font-size: 1.05rem;
}

.menu-item-desc {
  font-size: 0.92rem;
  color: var(--color-ink-soft);
  margin-top: 3px;
}

.menu-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--color-ink-soft);
  font-style: italic;
}

/* ---- Gallery ---- */
.gallery { padding: 100px 0; background: var(--color-cream); }
.gallery h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 48px; }

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

.gallery-item {
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

/* ---- Reviews ---- */
.reviews { padding: 100px 0; background: var(--color-cream-dark); }
.reviews h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 48px; }

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

.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-card p {
  font-size: 0.98rem;
  color: var(--color-ink-soft);
  font-style: italic;
  flex-grow: 1;
}

.review-card footer {
  font-weight: 700;
  color: var(--color-terracotta);
  font-size: 0.92rem;
}

/* ---- Location ---- */
.location { padding: 100px 0; background: var(--color-cream); }

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.location-info h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 20px; }

.location-info address {
  font-style: normal;
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--color-ink-soft);
}

.phone-line { margin-bottom: 28px; }
.phone-line a {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-terracotta);
  text-decoration: none;
}
.phone-line a:hover { text-decoration: underline; }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 9px 0;
  border-bottom: 1px solid rgba(43,36,34,0.1);
  font-size: 0.98rem;
}
.hours-table th { font-weight: 700; color: var(--color-ink); width: 45%; }
.hours-table td { color: var(--color-ink-soft); }

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 380px;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--color-ink);
  color: rgba(250,245,236,0.85);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-brand .brand-mark { margin-bottom: 6px; }
.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
}
.footer-brand p { font-size: 0.92rem; color: rgba(250,245,236,0.7); }
.footer-brand a { color: rgba(250,245,236,0.85); text-decoration: none; }
.footer-brand a:hover { text-decoration: underline; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}
.footer-links a {
  color: rgba(250,245,236,0.75);
  text-decoration: none;
  font-size: 0.95rem;
}
.footer-links a:hover { color: #fff; }

.footer-cta {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.footer-bottom {
  border-top: 1px solid rgba(250,245,236,0.12);
  padding: 22px 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(250,245,236,0.55);
}

/* ---- Modal ---- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20,14,12,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: var(--radius-lg);
  padding: 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  text-align: center;
}

.modal h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--color-terracotta);
}

.modal p {
  margin-bottom: 24px;
  color: var(--color-ink-soft);
  font-size: 1.05rem;
}
.modal p a { color: var(--color-terracotta); font-weight: 700; text-decoration: none; }

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

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-photo { order: -1; }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .footer-cta { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-cream);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 18px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .btn-order--nav { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding: 120px 20px 60px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-order--hero, .btn-outline { width: 100%; max-width: 320px; text-align: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-category { padding: 24px; }
}
