/* ============ Design Tokens ============ */
:root {
  --color-bg: #fffaf3;
  --color-ink: #2a1c14;
  --color-ink-soft: #5a463a;
  --color-cream: #fff3e2;
  --color-brand: #c8102e;       /* vibrant red — brand / order button */
  --color-brand-dark: #9c0c22;
  --color-accent: #f7941d;      /* warm orange accent */
  --color-accent-soft: #ffe3b0;
  --color-deep: #1f3d33;        /* deep green for contrast panels */
  --color-white: #ffffff;
  --shadow-md: 0 10px 30px rgba(42, 28, 20, 0.15);
  --shadow-lg: 0 20px 50px rgba(42, 28, 20, 0.25);
  --radius-pill: 999px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --header-h: 76px;
}

* { 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;
  -webkit-font-smoothing: antialiased;
}

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

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

p { margin: 0 0 1em; }

a { color: var(--color-brand-dark); text-decoration: none; }

.section-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--color-brand-dark);
  margin-bottom: 0.75rem;
}

.section-lede {
  max-width: 640px;
  color: var(--color-ink-soft);
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-white);
  padding: 0.75rem 1rem;
  z-index: 200;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-pill);
  border: none;
  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);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(200, 16, 46, 0.4);
}
.btn-order:hover {
  background: var(--color-brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(200, 16, 46, 0.5);
}
.btn-order:active { transform: translateY(0); }

.btn-lg {
  font-size: 1.1rem;
  padding: 1rem 2.2rem;
}

.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.85);
  padding: calc(1rem - 2px) calc(2.2rem - 2px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
}

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(42,28,20,0.08);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--color-ink);
}
.brand-mark { font-size: 1.6rem; }

.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--color-ink);
  font-weight: 700;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--color-brand-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  background: var(--color-white);
  border-top: 1px solid rgba(42,28,20,0.08);
}
.mobile-nav.open { display: block; }
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-nav a {
  color: var(--color-ink);
  font-weight: 700;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,26,20,0.55) 0%, rgba(31,26,20,0.72) 55%, rgba(20,14,10,0.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 8rem 1.5rem 5rem;
  text-align: center;
  color: var(--color-white);
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--color-white);
  margin-bottom: 1rem;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
  max-width: 600px;
  margin: 0 auto 2rem;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--color-white);
}
.hero-rating .stars { color: var(--color-accent); letter-spacing: 2px; }

/* ============ About ============ */
.about { background: var(--color-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}
.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.about-copy h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.about-copy p { color: var(--color-ink-soft); }

/* ============ Menu ============ */
.menu { background: var(--color-cream); }
.menu h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.menu-category {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.menu-category h3 {
  font-size: 1.25rem;
  color: var(--color-brand-dark);
  border-bottom: 2px solid var(--color-accent-soft);
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}
.menu-category ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(42,28,20,0.08);
}
.menu-category li:last-child { border-bottom: none; }
.item-name {
  font-weight: 800;
  font-family: var(--font-display);
}
.item-desc {
  color: var(--color-ink-soft);
  font-size: 0.92rem;
  margin-top: 0.15rem;
}
.menu-cta {
  text-align: center;
  margin-top: 3rem;
}

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

/* ============ Reviews ============ */
.reviews { background: var(--color-deep); color: var(--color-white); }
.reviews h2 { color: var(--color-white); font-size: clamp(1.8rem, 3vw, 2.4rem); }
.reviews .section-eyebrow { color: var(--color-accent); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin: 0;
}
.review-card .stars {
  color: var(--color-accent);
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}
.review-card p {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: rgba(255,255,255,0.92);
}
.review-card cite {
  display: block;
  font-weight: 700;
  color: var(--color-accent-soft);
  font-style: normal;
  margin-top: 0.5rem;
}

/* ============ Visit ============ */
.visit { background: var(--color-cream); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}
.visit h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.info-block { margin-bottom: 1.75rem; }
.info-block h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-brand-dark);
  margin-bottom: 0.5rem;
}
.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(42,28,20,0.08);
  max-width: 360px;
}
.phone-link {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-brand-dark);
}
.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 380px;
}

/* ============ Footer ============ */
.site-footer {
  background: var(--color-ink);
  color: rgba(255,255,255,0.85);
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-brand .brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-white);
}
.footer-brand .brand-mark { font-size: 1.5rem; }
.footer-brand p { color: rgba(255,255,255,0.65); margin-top: 0.25rem; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a { color: rgba(255,255,255,0.8); font-weight: 600; }
.footer-links a:hover { color: var(--color-accent); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}
.footer-contact p { margin: 0; color: rgba(255,255,255,0.75); }
.footer-contact .phone-link { color: var(--color-accent-soft); }
.footer-bottom {
  text-align: center;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ============ Modal ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 10, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 1.5rem;
}
.modal-overlay[hidden] { display: none; }
.modal {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 440px;
  width: 100%;
  padding: 2.5rem 2rem 2rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.modal h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.modal p {
  color: var(--color-ink-soft);
  margin-bottom: 1.5rem;
}
.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--color-ink-soft);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}
.modal-close:hover { color: var(--color-brand); }

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .about-grid, .visit-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-inner .btn-order { display: none; }
  .hero-content { padding: 6rem 1.25rem 4rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 180px; }
  .section-inner { padding: 3.5rem 1.25rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
}
