/* ===== Base / Variables ===== */
:root {
  --color-bg: #fdf8f1;
  --color-text: #2c1e14;
  --color-text-soft: #5a4636;
  --color-brand: #a11d1d;
  --color-brand-dark: #7c1414;
  --color-accent: #e8862c;
  --color-cream: #fff6e9;
  --color-line: #e6d7c2;
  --font-display: 'Fraunces', serif;
  --font-body: 'Nunito Sans', sans-serif;
  --shadow-soft: 0 10px 30px rgba(44, 30, 20, 0.12);
  --radius-lg: 18px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); margin: 0 0 0.5em; line-height: 1.15; }
p { margin: 0 0 1em; }
ul { list-style: none; margin: 0; padding: 0; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-brand);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-weight: 800;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-order {
  background: linear-gradient(135deg, var(--color-brand), var(--color-brand-dark));
  color: #fff;
  box-shadow: 0 6px 18px rgba(161, 29, 29, 0.4);
  letter-spacing: 0.02em;
}
.btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(161, 29, 29, 0.5);
}
.btn-outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 241, 0.95);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--color-line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-brand-dark);
}
.brand em { font-style: normal; color: var(--color-accent); }
.brand-mark { font-size: 1.6rem; }

.main-nav {
  display: flex;
  gap: 28px;
  font-weight: 700;
}
.main-nav a { color: var(--color-text-soft); }
.main-nav a:hover { color: var(--color-brand); }

.header-actions { display: flex; align-items: center; gap: 14px; }

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

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,15,10,0.55) 0%, rgba(30,15,10,0.75) 60%, rgba(30,15,10,0.9) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 100px 24px; }
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
  color: var(--color-accent);
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  max-width: 760px;
  margin-bottom: 18px;
}
.hero-tagline {
  max-width: 620px;
  font-size: 1.15rem;
  color: #f4e9dc;
  margin-bottom: 30px;
}
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-rating { display: flex; align-items: center; gap: 10px; font-weight: 700; color: #f4e9dc; }
.stars { color: var(--color-accent); font-size: 1.1rem; letter-spacing: 2px; }

/* ===== Section shared ===== */
section { padding: 90px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
  color: var(--color-brand);
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.section-sub { color: var(--color-text-soft); max-width: 620px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ===== About ===== */
.about { background: var(--color-cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.about-copy p { color: var(--color-text-soft); }

/* ===== Menu ===== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}
.menu-category {
  background: var(--color-cream);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
}
.menu-category h3 {
  color: var(--color-brand-dark);
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 10px;
  margin-bottom: 16px;
  font-size: 1.4rem;
}
.menu-category li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--color-line);
  font-weight: 600;
}
.menu-category li:last-child { border-bottom: none; }
.price { color: var(--color-brand); font-weight: 800; white-space: nowrap; }
.menu-note {
  text-align: center;
  margin-top: 30px;
  color: var(--color-text-soft);
  font-size: 0.9rem;
  font-style: italic;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 50px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* ===== Reviews ===== */
.reviews { background: var(--color-cream); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  margin: 0;
}
.review-card p { font-size: 1.05rem; color: var(--color-text-soft); margin: 14px 0; }
.review-card cite { font-weight: 800; color: var(--color-brand-dark); font-style: normal; }
.reviews-summary {
  text-align: center;
  margin-top: 40px;
  font-weight: 700;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

/* ===== Location ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.location-info address { font-style: normal; font-weight: 700; margin-bottom: 10px; display: block; }
.phone-link { font-weight: 800; color: var(--color-brand); font-size: 1.1rem; }
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 30px;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 9px 0;
  border-bottom: 1px solid var(--color-line);
  font-weight: 600;
}
.hours-table th { color: var(--color-text-soft); font-weight: 700; }
.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 320px;
}

/* ===== Footer ===== */
.site-footer {
  background: #241209;
  color: #f4e9dc;
  padding-top: 60px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-brand .brand-text { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; }
.footer-brand em { font-style: normal; color: var(--color-accent); }
.footer-brand p { margin: 4px 0 0; color: #d9c5ae; }
.footer-brand a { font-weight: 700; }
.footer-bottom {
  padding: 20px 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #b09877;
}

/* ===== Modal ===== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 10, 5, 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: var(--radius-lg);
  padding: 40px 36px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  text-align: center;
}
.modal h2 { color: var(--color-brand-dark); font-size: 1.5rem; }
.modal p { color: var(--color-text-soft); margin-bottom: 22px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text-soft);
}
.modal-close:hover { color: var(--color-brand); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--color-line);
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .header-actions .btn-order { padding: 10px 18px; font-size: 0.9rem; }
  .hero-content { padding: 70px 24px; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
