:root {
  --primary: #FF5A1F;
  --primary-dark: #D9440F;
  --accent: #38BDF8;
  --dark: #171310;
  --dark2: #221B16;
  --paper: #F7F3EC;
  --ink: #2B2420;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: 'Inter', system-ui, sans-serif; }
a { color: inherit; }

.topbar { background: var(--dark); color: white; padding: .7rem 1rem; border-bottom: 1px solid rgba(255,90,31,.35); }
.topbar-inner, .nav-inner, .wrap { max-width: 1160px; margin: 0 auto; }
.topbar-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .95rem; }

.nav { position: sticky; top: 0; z-index: 10; background: rgba(23,19,16,.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem; }
.brand { font-family: 'Oswald', system-ui, sans-serif; font-size: 1.7rem; font-weight: 700; letter-spacing: .03em; text-decoration: none; color: white; text-transform: uppercase; }
.nav-links { display: flex; gap: 1.25rem; align-items: center; font-weight: 700; }
.nav-links a:not(.button) { text-decoration: none; color: rgba(255,255,255,.85); }
.nav-links a:not(.button):hover { color: var(--accent); }

.button {
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  padding: .95rem 1.9rem;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 32px rgba(255,90,31,.45);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor: pointer;
  letter-spacing: .02em;
}
.button:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 18px 40px rgba(255,90,31,.55); }
.button.alt { background: var(--dark2); color: white; box-shadow: 0 12px 30px rgba(0,0,0,.3); border: 1px solid rgba(255,255,255,.12); }
.button.alt:hover { background: #2c231c; }

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background-image: linear-gradient(rgba(10,8,6,.68), rgba(10,8,6,.8)), url('../images/gallery-01.jpg');
  background-size: cover;
  background-position: center;
}
.hero .wrap { min-height: 74vh; display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: center; padding: 5rem 1rem; }
.eyebrow { text-transform: uppercase; letter-spacing: .15em; font-weight: 800; font-size: .78rem; color: var(--accent); margin: 0 0 .8rem; }
h1, h2, h3, h4 { font-family: 'Oswald', system-ui, sans-serif; line-height: 1.06; margin: 0; }
h1 { font-size: clamp(2.6rem, 7.5vw, 5rem); max-width: 850px; text-transform: uppercase; }
h2 { font-size: clamp(2.1rem, 4.8vw, 3.1rem); text-transform: uppercase; }
h3 { font-size: 1.7rem; text-transform: uppercase; }
.hero p { font-size: 1.2rem; line-height: 1.55; max-width: 640px; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-card { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); border-radius: 1.5rem; padding: 2rem; box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.hero-card strong { font-family: 'Oswald', system-ui, sans-serif; font-size: 1.15rem; text-transform: uppercase; }
.hero-card p { margin: .6rem 0; }

main section { padding: 5rem 1rem; }
.split { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: .85fr 1.15fr; gap: 3rem; align-items: start; }
.card-grid, .review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.info-card, .menu-card, blockquote { background: white; border: 1px solid rgba(0,0,0,.08); border-radius: 1.1rem; padding: 1.35rem; box-shadow: 0 16px 36px rgba(0,0,0,.08); margin: 0; }
.info-card h4, .menu-card h4 { font-size: 1.15rem; margin-bottom: .45rem; text-transform: uppercase; font-family: 'Oswald', system-ui, sans-serif; }
.info-card p, .menu-card p, .section-heading p, .muted { color: rgba(43,36,32,.68); line-height: 1.65; }

.menu-section { max-width: 1160px; margin: 0 auto 3rem; }
.section-heading { max-width: 760px; margin: 0 auto 2rem; text-align: center; }
.section-heading.compact { margin-left: 0; text-align: left; }
.menu-group { margin-bottom: 2.5rem; }
.menu-group h3 { margin-bottom: 1rem; color: var(--primary-dark); }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.menu-card { display: flex; justify-content: space-between; gap: 1rem; }

.gallery-section { background: var(--dark); }
.gallery-section .section-heading .eyebrow { color: var(--accent); }
.gallery-section .section-heading h2, .gallery-section .section-heading p { color: white; }
.gallery-section .section-heading p { color: rgba(255,255,255,.65); }
.gallery-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-grid img { width: 100%; height: 230px; object-fit: cover; border-radius: 1rem; box-shadow: 0 16px 36px rgba(0,0,0,.4); display: block; }

.reviews-section { background: var(--paper); }
blockquote p { margin: 0 0 .75rem; }
blockquote cite { font-weight: 700; color: var(--ink); font-style: normal; }
.stars { color: var(--primary); letter-spacing: .1em; display: block; margin-bottom: .5rem; }

.contact-box { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.contact-panel { background: var(--dark); color: white; border-radius: 1.5rem; padding: 2rem; }
.contact-panel p, .contact-panel li { line-height: 1.65; }
.contact-panel a { text-decoration: underline; }
.hours-list { padding-left: 1.1rem; }
.map-embed { width: 100%; border: 0; border-radius: 1.1rem; min-height: 260px; margin-top: 1rem; }

footer { background: var(--dark); color: white; padding: 2.5rem 1rem; border-top: 1px solid rgba(255,90,31,.3); }
footer .wrap { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; align-items: center; }
footer .footer-brand { font-family: 'Oswald', system-ui, sans-serif; font-size: 1.3rem; font-weight: 700; text-transform: uppercase; }
.footer-cta { display: flex; gap: .75rem; flex-wrap: wrap; }

.mobile-cta { position: fixed; right: 1rem; bottom: 1rem; z-index: 30; }

.modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.68); display: none; align-items: center; justify-content: center; padding: 1rem; z-index: 50; }
.modal-backdrop.open { display: flex; }
.modal-card { background: white; color: var(--ink); border-radius: 1.4rem; max-width: 440px; width: 100%; padding: 1.6rem; box-shadow: 0 30px 80px rgba(0,0,0,.4); }
.modal-top { display: flex; align-items: start; justify-content: space-between; gap: 1rem; }
.modal-top h2 { text-transform: none; font-size: 1.4rem; }
.modal-close { border: 0; background: rgba(0,0,0,.06); border-radius: 999px; width: 2.2rem; height: 2.2rem; font-size: 1.2rem; cursor: pointer; }
.modal-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.2rem; }

@media (max-width: 820px) {
  .hero .wrap, .split, .contact-box { grid-template-columns: 1fr; }
  .card-grid, .menu-grid, .review-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links a:not(.button) { display: none; }
}
