/* ---------- Base ---------- */
:root {
  --color-primary: #E8552A;
  --color-primary-dark: #C7401A;
  --color-secondary: #2E5339;
  --color-accent: #F2A93B;
  --color-cream: #FFF8ED;
  --color-dark: #2B2118;
  --color-muted: #6B5D52;
  --font-heading: 'Fraunces', serif;
  --font-body: 'Nunito Sans', sans-serif;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 30px rgba(43, 33, 24, 0.15);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

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

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

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

.section { padding: 80px 0; }

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

.section-lead {
  color: var(--color-muted);
  max-width: 560px;
  margin: 0 auto 3rem;
}

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

/* ---------- Order Online Button ---------- */
.btn-order {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  border-radius: var(--radius-pill);
  padding: 16px 36px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(232, 85, 42, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-family: var(--font-body);
}

.btn-order:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(232, 85, 42, 0.5);
}

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

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

.btn-order--modal { margin-top: 1.5rem; text-align: center; }

.btn-secondary {
  display: inline-block;
  padding: 16px 36px;
  border: 2px solid #fff;
  border-radius: var(--radius-pill);
  color: #fff;
  font-weight: 700;
  margin-left: 16px;
}

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-cream);
  box-shadow: 0 2px 12px rgba(43,33,24,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--color-secondary);
  white-space: nowrap;
}

.logo span { color: var(--color-primary); }

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

.main-nav a {
  font-weight: 700;
  color: var(--color-dark);
  padding: 8px 0;
  position: relative;
}

.main-nav a:hover { color: var(--color-primary); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--color-dark);
  border-radius: 2px;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,33,24,0.55) 0%, rgba(43,33,24,0.75) 100%);
}

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

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 1em;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 0.6em;
}

.hero-sub {
  font-size: 1.15rem;
  margin-bottom: 2em;
  color: #f2e9de;
  max-width: 560px;
}

.hero-actions { display: flex; align-items: center; flex-wrap: wrap; margin-bottom: 2em; }

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

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

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.about-image img {
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.about-text p { color: var(--color-muted); margin-bottom: 1.1em; }
.about-text h2 { color: var(--color-secondary); }

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

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

.menu-category h3 {
  color: var(--color-secondary);
  border-bottom: 3px solid var(--color-accent);
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1.3rem;
}

.menu-category h3 span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-muted);
  letter-spacing: 0.04em;
}

.menu-category ul { list-style: none; padding: 0; margin: 1.2rem 0 0; }

.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px dashed #e5dbcb;
}

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

.item-name { font-weight: 800; }
.item-desc { color: var(--color-muted); font-size: 0.92rem; }

.menu-note {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--color-muted);
}

.menu-note a { color: var(--color-primary); font-weight: 700; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 2.5rem;
}

.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.03); }

/* ---------- Reviews ---------- */
.reviews { background: var(--color-secondary); color: #fff; }

.reviews h2, .reviews .section-eyebrow { color: #fff; }
.reviews .section-eyebrow { color: var(--color-accent); }

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

.review-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 28px;
}

.review-text { font-style: italic; margin: 1em 0; color: #f2ede4; }
.review-author { font-weight: 800; color: var(--color-accent); margin: 0; }

.reviews-summary {
  text-align: center;
  margin-top: 2.5rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  gap: 10px;
}

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

.visit-info h2 { color: var(--color-secondary); }

address { font-style: normal; margin: 0.6em 0; font-weight: 700; font-size: 1.1rem; }

.visit-phone { margin: 0 0 1.5em; }
.visit-phone a { color: var(--color-primary); font-weight: 800; font-size: 1.15rem; }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.hours-table th, .hours-table td {
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid #e5dbcb;
}

.hours-table th { font-weight: 700; color: var(--color-dark); }
.hours-table td { color: var(--color-muted); text-align: right; }

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

.visit-map iframe { width: 100%; height: 100%; min-height: 400px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-dark);
  color: #f2ede4;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 48px 24px;
  flex-wrap: wrap;
}

.footer-brand .logo { color: #fff; }
.footer-brand .logo span { color: var(--color-accent); }
.footer-brand p { margin: 0.3em 0; color: #c9beb0; }
.footer-brand a { color: #f2ede4; font-weight: 700; }

.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-weight: 700; color: #f2ede4; }
.footer-links a:hover { color: var(--color-accent); }

.footer-bottom {
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
  color: #a99c8d;
  border-top: 1px solid rgba(255,255,255,0.1);
}

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

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

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

.modal h2 { color: var(--color-secondary); }
.modal p { color: var(--color-muted); }

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

.modal-close:hover { color: var(--color-primary); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid, .visit-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); }
}

@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-cream);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }

  .main-nav.open { max-height: 320px; }

  .main-nav a { padding: 16px 0; width: 100%; text-align: center; }

  .nav-toggle { display: flex; }

  .btn-order--nav { display: none; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }

  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .btn-secondary { margin-left: 0; }
}

@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}
