@import url('https://fonts.googleapis.com/css2?family=Rye&family=Barlow+Condensed:wght@500;600;700&family=Work+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg: #17140f;
  --bg-raised: #201c15;
  --paper: #f3e9d8;
  --paper-dim: #e4d6bd;
  --red: #a9342a;
  --red-dark: #7c261f;
  --mustard: #d6a234;
  --steel: #8a8579;
  --ink: #17140f;
  --cream-text: #f3e9d8;

  --font-display: 'Rye', serif;
  --font-eyebrow: 'Barlow Condensed', sans-serif;
  --font-body: 'Work Sans', sans-serif;

  --container: 1120px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream-text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--mustard);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 0 0.4em;
  color: var(--paper);
}

h1 { font-size: clamp(2.8rem, 7vw, 5.2rem); line-height: 1.02; text-transform: uppercase; }
h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); text-transform: uppercase; }
h3 { font-size: 1.4rem; text-transform: uppercase; }

p { margin: 0 0 1em; }

.btn {
  display: inline-block;
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 3px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn-primary {
  background: var(--red);
  color: var(--paper);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}
.btn-outline:hover { background: var(--paper); color: var(--ink); transform: translateY(-2px); }

a.btn:focus-visible, .navlink:focus-visible, .menu-toggle:focus-visible {
  outline: 3px solid var(--mustard);
  outline-offset: 2px;
}

/* ---------- NAV ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(23, 20, 15, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(243, 233, 216, 0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img {
  height: 40px;
  width: auto;
  border-radius: 2px;
}
.brand-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--paper);
  letter-spacing: 0.02em;
}
.navlinks {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navlink {
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--paper-dim);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
.navlink:hover, .navlink.active { color: var(--mustard); border-color: var(--mustard); }
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--paper-dim);
  color: var(--paper);
  border-radius: 3px;
  padding: 6px 10px;
  font-size: 1.2rem;
}

@media (max-width: 780px) {
  .navlinks {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    display: none;
    border-bottom: 1px solid rgba(243,233,216,0.12);
  }
  .navlinks.open { display: flex; }
  .navlink { padding: 16px 24px; border-bottom: 1px solid rgba(243,233,216,0.08); width: 100%; }
  .menu-toggle { display: block; }
}

/* ---------- CHECKER DIVIDER (signature element) ---------- */
.checker-divider {
  --sq: 26px;
  height: calc(var(--sq) * 2);
  background-image:
    linear-gradient(45deg, var(--red) 25%, transparent 25%, transparent 75%, var(--red) 75%, var(--red)),
    linear-gradient(45deg, var(--red) 25%, var(--paper) 25%, var(--paper) 75%, var(--red) 75%, var(--red));
  background-size: var(--sq) var(--sq);
  background-position: 0 0, calc(var(--sq)/2) calc(var(--sq)/2);
  position: relative;
  clip-path: polygon(
    0% 12%, 4% 0%, 8% 12%, 12% 0%, 16% 12%, 20% 0%, 24% 12%, 28% 0%, 32% 12%, 36% 0%,
    40% 12%, 44% 0%, 48% 12%, 52% 0%, 56% 12%, 60% 0%, 64% 12%, 68% 0%, 72% 12%, 76% 0%,
    80% 12%, 84% 0%, 88% 12%, 92% 0%, 96% 12%, 100% 0%,
    100% 88%, 96% 100%, 92% 88%, 88% 100%, 84% 88%, 80% 100%, 76% 88%, 72% 100%, 68% 88%, 64% 100%,
    60% 88%, 56% 100%, 52% 88%, 48% 100%, 44% 88%, 40% 100%, 36% 88%, 32% 100%, 28% 88%, 24% 100%,
    20% 88%, 16% 100%, 12% 88%, 8% 100%, 4% 88%, 0% 100%
  );
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,20,15,0.35) 0%, rgba(23,20,15,0.55) 55%, rgba(23,20,15,0.96) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 24px 70px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero h1 { margin-bottom: 0.15em; }
.hero .tagline {
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mustard);
  font-size: 1.1rem;
  margin-bottom: 1.3em;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- SECTIONS ---------- */
section { padding: 90px 0; }
.section-tight { padding: 60px 0; }
.center { text-align: center; }
.section-head { max-width: 640px; margin: 0 auto 50px; }
.section-head.left { margin: 0 0 50px; text-align: left; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-3 { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg-raised);
  border: 1px solid rgba(243,233,216,0.1);
  border-radius: 6px;
  overflow: hidden;
}
.card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.card-body { padding: 20px 22px 24px; }
.card-body h3 { font-size: 1.15rem; margin-bottom: 0.35em; }
.card-body p { color: var(--paper-dim); font-size: 0.96rem; margin-bottom: 0; }

.bg-paper {
  background: var(--paper);
  color: var(--ink);
}
.bg-paper h1, .bg-paper h2, .bg-paper h3 { color: var(--ink); }
.bg-paper .eyebrow { color: var(--red); }
.bg-paper .card-body h3, .bg-paper .card-body p { color: var(--paper); }

.menu-section, #bar {
  scroll-margin-top: 130px;
}

.menu-tabs {
  position: sticky;
  top: 65px;
  z-index: 40;
  background: rgba(23, 20, 15, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(243, 233, 216, 0.12);
}
.menu-tabs-inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px 24px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.menu-tabs-inner::-webkit-scrollbar { display: none; }
.menu-tabs-inner a {
  flex: 0 0 auto;
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--paper-dim);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid rgba(243,233,216,0.25);
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.menu-tabs-inner a:hover,
.menu-tabs-inner a:focus-visible {
  background: var(--red);
  border-color: var(--red);
  color: var(--paper);
}

/* ---------- MENU PAGE ---------- */
.menu-card {
  background: var(--bg-raised);
  border: 1px solid rgba(243,233,216,0.1);
  border-radius: 8px;
  padding: 34px 36px;
}
.menu-cat-title {
  font-family: var(--font-display);
  color: var(--paper);
  text-transform: uppercase;
  font-size: 1.5rem;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.menu-cat-note {
  font-family: var(--font-eyebrow);
  color: var(--paper-dim);
  font-size: 0.92rem;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.menu-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}
.menu-item .name {
  font-weight: 600;
  color: var(--paper);
  white-space: nowrap;
}
.menu-item .desc {
  color: var(--paper-dim);
  font-size: 0.9rem;
  margin-top: 2px;
}
.menu-item .dots {
  flex: 1;
  border-bottom: 2px dotted rgba(243,233,216,0.28);
  margin-bottom: 5px;
}
.menu-item .price {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--mustard);
  white-space: nowrap;
}
.menu-item-stack { display: flex; flex-direction: column; }
.menu-section { margin-bottom: 46px; }
.menu-section:last-child { margin-bottom: 0; }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; }
@media (max-width: 780px) { .menu-grid { grid-template-columns: 1fr; } }

.callout {
  border-left: 4px solid var(--red);
  padding: 14px 18px;
  background: rgba(169,52,42,0.12);
  border-radius: 0 6px 6px 0;
  font-size: 0.95rem;
  color: var(--paper-dim);
  margin-top: 8px;
}

/* ---------- HOURS TABLE ---------- */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 10px 0; border-bottom: 1px solid rgba(243,233,216,0.12); }
.hours-table td:first-child { font-family: var(--font-eyebrow); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.hours-table td:last-child { text-align: right; color: var(--paper-dim); }

/* ---------- GALLERY ---------- */
.masonry {
  columns: 3;
  column-gap: 20px;
}
.masonry img {
  margin-bottom: 20px;
  border-radius: 6px;
  break-inside: avoid;
}
@media (max-width: 860px) { .masonry { columns: 2; } }
@media (max-width: 560px) { .masonry { columns: 1; } }

/* ---------- FOOTER ---------- */
footer {
  background: var(--bg-raised);
  border-top: 1px solid rgba(243,233,216,0.1);
  padding: 50px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 34px;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mustard);
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.footer-grid p, .footer-grid a { color: var(--paper-dim); text-decoration: none; font-size: 0.95rem; }
.footer-grid a:hover { color: var(--paper); }
.social-row { display: flex; gap: 14px; margin-top: 10px; }
.social-row a {
  border: 1px solid rgba(243,233,216,0.25);
  border-radius: 4px;
  padding: 6px 12px;
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}
.footer-bottom {
  text-align: center;
  font-size: 0.82rem;
  color: var(--steel);
  border-top: 1px solid rgba(243,233,216,0.08);
  padding-top: 22px;
}

/* ---------- MISC PAGE HERO (non-home) ---------- */
.page-hero {
  padding: 150px 0 60px;
  background: linear-gradient(180deg, rgba(169,52,42,0.18), transparent);
  border-bottom: 1px solid rgba(243,233,216,0.1);
}

.placeholder-note {
  font-size: 0.82rem;
  color: var(--steel);
  font-style: italic;
}
