/* ---------- Variables & Reset ---------- */
:root {
  --color-brand-red: #d62828;
  --color-brand-red-dark: #a91f1f;
  --color-brand-orange: #f4a127;
  --color-ink: #2b1e17;
  --color-cream: #fdf6ec;
  --color-cream-dark: #f6e9d3;
  --color-brown: #6b3f2a;
  --font-display: 'Fraunces', serif;
  --font-body: 'Nunito Sans', sans-serif;
  --shadow-md: 0 10px 30px rgba(43, 30, 23, 0.15);
  --radius-lg: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 0.5em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-brand-red);
  color: #fff;
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus { left: 10px; top: 10px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--color-brand-red);
  margin-bottom: 0.5em;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-sub {
  max-width: 620px;
  color: #5a4838;
  margin-bottom: 2.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-order {
  background: var(--color-brand-red);
  color: #fff;
  box-shadow: 0 6px 18px rgba(214, 40, 40, 0.45);
}
.btn-order:hover {
  background: var(--color-brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(214, 40, 40, 0.5);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--color-cream);
  border-bottom: 1px solid rgba(43,30,23,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--color-brand-red);
}
.brand-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-brown);
}
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: var(--color-cream-dark); }

.site-nav {
  display: flex;
  gap: 28px;
}
.site-nav a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-ink);
}
.site-nav a:hover { color: var(--color-brand-red); }

.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: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--color-ink);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-image: url('../images/photo-01.jpg');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,20,15,0.55) 0%, rgba(43,20,15,0.78) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 720px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero .eyebrow { color: var(--color-brand-orange); }
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: #fff;
  margin-bottom: 0.4em;
}
.hero-tagline {
  font-size: 1.15rem;
  color: #f2e6d8;
  max-width: 560px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 1.6rem 0 1.6rem;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.stars { color: var(--color-brand-orange); letter-spacing: 2px; }

/* ---------- About ---------- */
.about { padding: 90px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-copy h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.about-copy p { color: #4a3a2c; }

/* ---------- Menu ---------- */
.menu { padding: 90px 0; background: var(--color-cream-dark); }
.menu h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px;
  margin-top: 20px;
}
.menu-category h3 {
  font-size: 1.3rem;
  color: var(--color-brand-red);
  border-bottom: 2px solid var(--color-brand-orange);
  padding-bottom: 10px;
  margin-bottom: 16px;
}
.menu-category li { margin-bottom: 16px; }
.menu-item { display: flex; flex-direction: column; }
.menu-item-name { font-weight: 800; font-size: 1.05rem; }
.menu-item-desc { color: #5a4838; font-size: 0.92rem; }
.menu-note {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
  color: #7a6650;
}

/* ---------- Gallery ---------- */
.gallery { padding: 90px 0; }
.gallery h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* ---------- Reviews ---------- */
.reviews { padding: 90px 0; background: var(--color-brown); color: #fff; }
.reviews h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.reviews .eyebrow { color: var(--color-brand-orange); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.review-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0;
}
.review-card p {
  font-size: 0.95rem;
  color: #f2e6d8;
}
.review-card footer {
  font-weight: 800;
  color: var(--color-brand-orange);
}
.review-card .stars { margin-bottom: 10px; display: block; }

/* ---------- Location ---------- */
.location { padding: 90px 0; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.location-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.location-info h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-brand-red);
  margin-top: 1.5em;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(43,30,23,0.15);
  max-width: 340px;
}
.hours-list .closed { color: var(--color-brand-red); font-weight: 700; }
.phone-link { font-weight: 800; color: var(--color-brand-red); font-size: 1.1rem; }
.location-info .btn { margin-top: 24px; }
.location-map {
  min-height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.location-map iframe { width: 100%; height: 100%; min-height: 380px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-ink); color: var(--color-cream-dark); padding-top: 50px; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-info a:hover { color: var(--color-brand-orange); }
.footer-bottom {
  padding: 20px 24px;
  font-size: 0.8rem;
  text-align: center;
  color: #a3927f;
}

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 8, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  max-width: 440px;
  width: 100%;
  padding: 40px 32px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  text-align: center;
}
.modal h2 { color: var(--color-brand-red); font-size: 1.5rem; }
.modal-phone { font-size: 1.2rem; font-weight: 800; margin-top: 1.2em; }
.modal-phone a { color: var(--color-brand-red); }
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-ink);
}

/* ---------- 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(2, 1fr); }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-cream);
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 20px;
    border-bottom: 1px solid rgba(43,30,23,0.08);
    box-shadow: var(--shadow-md);
  }
  .site-nav[hidden] { display: none; }
  .site-nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(43,30,23,0.08);
  }
  .header-actions .btn-order { padding: 10px 18px; font-size: 0.85rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img { height: 180px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

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