/* ---------- Reset & base ---------- */
:root {
  --brand-red: #d6321c;
  --brand-red-dark: #a8230f;
  --brand-orange: #f2994a;
  --brand-gold: #f2c14e;
  --ink: #241814;
  --ink-soft: #5a4a42;
  --cream: #fff8ef;
  --cream-dark: #f6ecd9;
  --white: #ffffff;
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --radius-pill: 999px;
  --radius-card: 18px;
  --shadow-soft: 0 12px 30px rgba(36, 24, 20, 0.12);
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  z-index: 200;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  text-align: center;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-order {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  color: var(--white);
  padding: 12px 28px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(214, 50, 28, 0.4);
}
.btn-order:hover, .btn-order:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(214, 50, 28, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 12px 28px;
  font-size: 0.95rem;
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: rgba(255, 255, 255, 0.15);
}

.btn-lg {
  padding: 16px 38px;
  font-size: 1.05rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  box-shadow: 0 2px 14px rgba(36, 24, 20, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-right: auto;
}
.brand-mark { font-size: 1.6rem; }
.brand-text em { color: var(--brand-red); font-style: normal; }

.main-nav {
  display: flex;
  gap: 28px;
  font-weight: 700;
}
.main-nav a {
  color: var(--ink-soft);
  padding: 6px 0;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus-visible {
  color: var(--brand-red);
}

.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;
  width: 100%;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0 24px 20px;
  background: var(--cream);
}
.mobile-nav a {
  padding: 12px 4px;
  border-bottom: 1px solid var(--cream-dark);
  font-weight: 700;
  color: var(--ink-soft);
}
.mobile-nav .btn-order {
  margin-top: 14px;
  width: 100%;
}
.mobile-nav.is-open { display: flex; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(242, 193, 78, 0.35), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(242, 153, 74, 0.4), transparent 50%),
    linear-gradient(135deg, #7a1a10 0%, var(--brand-red-dark) 45%, var(--brand-red) 100%);
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 2px, transparent 2px, transparent 22px);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 110px 24px 90px;
  max-width: 780px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--brand-gold);
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stats div {
  display: flex;
  flex-direction: column;
}
.hero-stats strong {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--brand-gold);
}
.hero-stats span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--brand-red);
  margin-bottom: 10px;
}
.center { text-align: center; }
.section h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
.menu-note { color: var(--ink-soft); margin-bottom: 50px; }

/* ---------- About ---------- */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-copy p { color: var(--ink-soft); }
.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.visual-card {
  border-radius: var(--radius-card);
  aspect-ratio: 1;
  box-shadow: var(--shadow-soft);
}
.visual-1 {
  grid-column: 1 / 3;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-gold));
}
.visual-2 {
  background: linear-gradient(135deg, var(--brand-red), #7a1a10);
}
.visual-3 {
  background: repeating-radial-gradient(circle at 30% 30%, var(--cream-dark) 0, var(--cream-dark) 8px, var(--brand-gold) 8px, var(--brand-gold) 16px);
}

/* ---------- Menu ---------- */
.menu { background: var(--cream); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 20px;
}
.menu-category {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
.menu-category h3 {
  color: var(--brand-red-dark);
  font-size: 1.25rem;
  border-bottom: 2px solid var(--cream-dark);
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.menu-category li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--cream-dark);
}
.menu-category li:last-child { border-bottom: none; }
.price { font-weight: 800; color: var(--brand-red); white-space: nowrap; }
.menu-cta { text-align: center; margin-top: 50px; }

/* ---------- Gallery ---------- */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.gallery-tile {
  aspect-ratio: 4/3;
  border-radius: var(--radius-card);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: var(--white);
  font-weight: 800;
  font-family: var(--font-head);
  font-size: 1.1rem;
  box-shadow: var(--shadow-soft);
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.g-1 { background: linear-gradient(160deg, #f2c14e, #d6321c); }
.g-2 { background: linear-gradient(160deg, #a8230f, #5a1108); }
.g-3 { background: linear-gradient(160deg, #f2994a, #f2c14e); }
.g-4 { background: linear-gradient(160deg, #d6321c, #f2994a); }
.g-5 { background: linear-gradient(160deg, #7a1a10, #d6321c); }
.g-6 { background: linear-gradient(160deg, #f2c14e, #f2994a); }

/* ---------- Reviews ---------- */
.reviews { background: var(--cream); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  margin: 0;
}
.review-card .stars {
  color: var(--brand-gold);
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.review-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.review-card cite {
  font-weight: 800;
  color: var(--brand-red-dark);
  font-style: normal;
}
.reviews-footnote {
  text-align: center;
  margin-top: 30px;
  color: var(--ink-soft);
  font-weight: 700;
}

/* ---------- Visit ---------- */
.visit { background: var(--white); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}
.hours-list {
  margin: 24px 0;
  border-top: 1px solid var(--cream-dark);
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.hours-list li.closed span:last-child { color: var(--brand-red); font-weight: 700; }
address { font-style: normal; color: var(--ink-soft); margin-bottom: 8px; }
.link-tel {
  font-weight: 800;
  color: var(--brand-red);
  font-size: 1.2rem;
}
.cash-note {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.visit-map {
  min-height: 340px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.visit-map iframe { width: 100%; height: 100%; min-height: 340px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  padding: 50px 0;
  text-align: center;
}
.footer-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand em { color: var(--brand-gold); font-style: normal; }
.site-footer a { color: var(--brand-gold); font-weight: 700; }
.site-footer .btn-order { margin: 18px 0; }
.footer-fine {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 20px;
}

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(36, 24, 20, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
}
.modal-overlay[hidden] { display: none !important; }
.modal {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 44px 36px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
.modal h2 {
  color: var(--brand-red-dark);
  font-size: 1.5rem;
}
.modal p { color: var(--ink-soft); }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--cream-dark);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}
.modal-close:hover { background: var(--brand-red); color: var(--white); }

/* ---------- 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); }
  .visit-map { min-height: 280px; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .header-inner .btn-order { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { padding: 80px 24px 60px; }
  .hero-stats { gap: 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
