:root {
  --navy: #0b1821;
  --navy-deep: #071117;
  --navy-mid: #132836;
  --red: #a92821;
  --red-bright: #c53a2e;
  --cream: #efe1c5;
  --cream-bright: #f8ecd5;
  --yellow: #d9b45b;
  --wood: #111719;
  --wood-2: #171d1e;
  --ink: #182735;
  --line: rgba(239,225,197,.38);
  --display: "Rye", Georgia, serif;
  --condensed: "Oswald", Impact, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cream);
  font-family: var(--condensed);
  font-size: 18px;
  line-height: 1.55;
  background:
    linear-gradient(90deg, rgba(0,0,0,.18), transparent 12%, transparent 88%, rgba(0,0,0,.2)),
    repeating-linear-gradient(0deg, #0d1519 0 3px, #101a1f 3px 6px, #0b1418 6px 9px),
    #0d1519;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .12;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 15% 30%, #fff 0 1px, transparent 1.5px),
    radial-gradient(circle at 73% 67%, #fff 0 .7px, transparent 1.2px);
  background-size: 29px 31px, 43px 47px;
  mix-blend-mode: soft-light;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 999; padding: .7rem 1rem; color: var(--navy); background: var(--cream); font-weight: 700; }
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background:
    linear-gradient(to bottom, rgba(12,24,31,.98), rgba(6,14,18,.98)),
    var(--navy);
  border-bottom: 4px solid var(--red);
  box-shadow: 0 7px 0 var(--cream), 0 12px 26px rgba(0,0,0,.32);
}
.nav-wrap {
  max-width: 1160px;
  min-height: 74px;
  padding: 0 22px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand img { width: 62px; height: 62px; border-radius: 50%; filter: drop-shadow(0 4px 3px rgba(0,0,0,.35)); }
.site-nav { display: flex; align-items: center; gap: 1.4rem; text-transform: uppercase; font-weight: 700; letter-spacing: .09em; font-size: .84rem; }
.site-nav a { text-decoration: none; color: var(--cream); text-shadow: 1px 1px 0 #000; }
.site-nav a:hover { color: white; }
.order-link { padding: .45rem .75rem; border: 2px solid var(--cream); background: var(--red); color: white; transform: rotate(-1deg); box-shadow: 3px 3px 0 #061016; }
.order-link small { display: block; text-align: center; color: var(--cream); font-size: .58rem; letter-spacing: .12em; }
.nav-toggle { display: none; border: 0; background: transparent; padding: .5rem; }
.nav-toggle span { width: 28px; height: 3px; display: block; margin: 5px 0; background: var(--cream); }

.hero-section, .menu-section, .smoked-section, .find-section, .contact-section { padding: 64px 20px; }
.hero-section { padding-top: 48px; }
.menu-section { padding-top: 18px; }

.board-shell {
  width: min(1140px, 100%);
  margin: 0 auto;
  position: relative;
  background:
    linear-gradient(90deg, rgba(255,255,255,.025), transparent 10%, transparent 90%, rgba(255,255,255,.025)),
    repeating-linear-gradient(0deg, rgba(255,255,255,.013) 0 2px, rgba(0,0,0,.045) 2px 5px),
    #10191d;
  border: 2px solid #a07e4f;
  outline: 6px double rgba(223,190,137,.5);
  box-shadow: 0 25px 70px rgba(0,0,0,.45), inset 0 0 90px rgba(0,0,0,.4);
}
.board-shell::after {
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  border: 1px solid rgba(239,225,197,.12);
  box-shadow: inset 0 0 28px rgba(0,0,0,.32);
}

.hero-board { overflow: hidden; }
.board-header-art { width: 100%; height: auto; border-bottom: 2px solid #997542; }
.hero-feature {
  padding: 42px 44px 34px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 34px;
  align-items: center;
}
.star-kicker, .small-label { margin: 0 0 .8rem; color: var(--yellow); text-transform: uppercase; letter-spacing: .16em; font-weight: 700; font-size: .78rem; }
.star-kicker span { color: var(--red-bright); padding: 0 .3rem; }
h1, h2, h3 { font-family: var(--display); text-transform: uppercase; }
.hero-copy h1 {
  margin: 0;
  font-size: clamp(3.3rem, 6vw, 6rem);
  line-height: .92;
  color: var(--cream-bright);
  text-shadow: 3px 3px 0 var(--red), 5px 5px 0 rgba(0,0,0,.62);
  letter-spacing: .005em;
}
.hero-copy h1 span { color: var(--cream); font-size: .75em; }
.hero-lede { max-width: 590px; margin: 1.5rem 0 1.8rem; color: rgba(248,236,213,.83); font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.btn { display: inline-block; text-decoration: none; text-transform: uppercase; letter-spacing: .07em; font-weight: 800; padding: .78rem 1.05rem; border: 2px solid var(--cream); box-shadow: 4px 4px 0 rgba(0,0,0,.55); transition: transform .15s ease; }
.btn:hover { transform: translateY(-2px) rotate(-.4deg); }
.btn-red { background: var(--red); color: #fff; }
.btn-cream { background: var(--cream); color: var(--navy); }
.hero-poster { position: relative; border: 2px solid #a37d49; outline: 4px solid rgba(239,225,197,.13); transform: rotate(.45deg); box-shadow: 10px 13px 0 rgba(0,0,0,.22); overflow: hidden; }
.hero-poster img { display: block; width: 100%; height: auto; max-height: none; object-fit: contain; }
.wood-ribbon {
  padding: 17px 20px;
  background: linear-gradient(#a62b22, #8d211c);
  border-top: 3px solid #d3aa73;
  border-bottom: 3px solid #d3aa73;
  color: var(--cream-bright);
  text-align: center;
  text-transform: uppercase;
  font-family: var(--display);
  letter-spacing: .055em;
  font-size: clamp(.8rem, 1.7vw, 1.18rem);
  text-shadow: 2px 2px 0 rgba(0,0,0,.45);
}
.wood-ribbon span { color: var(--cream); padding: 0 .55rem; }

.menu-board-shell { padding: 36px 34px 26px; }
.poster-heading { text-align: center; margin: 0 auto 28px; max-width: 760px; position: relative; z-index: 2; }
.poster-heading .rule { display: flex; align-items: center; gap: 12px; color: var(--red); }
.poster-heading .rule::before, .poster-heading .rule::after { content: ""; height: 2px; flex: 1; background: var(--red); }
.poster-heading > p { margin: .55rem 0 -.15rem; text-transform: uppercase; letter-spacing: .18em; color: var(--yellow); font-size: .75rem; font-weight: 700; }
.poster-heading h2, .smoked-title-wrap h2, .find-grid h2, .contact-board h2 {
  margin: 0;
  color: var(--cream-bright);
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: .92;
  text-shadow: 3px 3px 0 var(--red), 5px 5px 0 rgba(0,0,0,.6);
}
.red-swipe { height: 7px; width: 54%; margin: .65rem auto 0; background: var(--red); transform: rotate(-1.3deg); clip-path: polygon(0 26%, 95% 0, 100% 55%, 8% 100%); }
.red-swipe.short { width: 72%; margin-left: 0; }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; position: relative; z-index: 2; }
.menu-poster { margin: 0; border: 2px solid #aa8250; box-shadow: 4px 5px 0 rgba(0,0,0,.25); overflow: hidden; background: #0c1112; }
.menu-poster img { display: block; width: 100%; height: auto; max-height: none; object-fit: contain; transition: transform .2s ease; }
.menu-poster:hover img { transform: scale(1.012); }
.combo-strip { width: 100%; margin-top: 12px; border: 2px solid #a47d49; position: relative; z-index: 2; }

.smoked-board { padding: 0 40px 42px; overflow: hidden; }
.paper-ribbon {
  width: min(840px, 88%);
  margin: -2px auto 42px;
  padding: 13px 24px;
  background: #e7d5b2;
  color: var(--navy);
  border: 2px solid #9d7748;
  box-shadow: 0 5px 0 rgba(0,0,0,.23);
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .12em;
  transform: rotate(-.35deg);
}
.paper-ribbon span { color: var(--red); }
.smoked-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center; }
.smoked-title-wrap h2 { font-size: clamp(3rem, 6.6vw, 5.6rem); }
.smoked-copy { border-left: 4px solid var(--red); padding-left: 28px; }
.smoked-copy p { margin-top: 0; color: rgba(248,236,213,.82); font-size: 1.08rem; }
.smoked-copy .chalk-script { margin-bottom: 0; color: var(--yellow); font-family: Georgia, serif; font-style: italic; font-size: 1.22rem; }
.three-up { margin-top: 42px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px dashed rgba(239,225,197,.28); border-bottom: 1px dashed rgba(239,225,197,.28); position: relative; z-index: 2; }
.three-up article { padding: 26px 24px 28px; border-right: 1px dashed rgba(239,225,197,.22); }
.three-up article:last-child { border-right: 0; }
.three-up article.featured { background: rgba(166,43,34,.23); }
.icon-star { color: var(--red-bright); }
.three-up h3 { margin: .45rem 0 .4rem; color: var(--cream); font-size: 1.42rem; }
.three-up p { margin: 0; color: rgba(239,225,197,.68); font-size: .93rem; }

.find-board { padding: 42px 44px; }
.find-grid { display: grid; grid-template-columns: 1fr .72fr; gap: 54px; align-items: center; }
.find-grid h2 { font-size: clamp(3rem, 6vw, 5.2rem); }
.find-grid > div:first-child > p:not(.star-kicker) { color: rgba(239,225,197,.78); max-width: 640px; }
.next-up { margin-top: 1.6rem; padding: 18px 20px; border: 2px dashed var(--red); background: rgba(166,43,34,.11); }
.next-up span { color: var(--yellow); text-transform: uppercase; letter-spacing: .16em; font-size: .7rem; }
.next-up strong { display: block; margin: .2rem 0; text-transform: uppercase; color: var(--cream-bright); }
.next-up p { margin: 0; color: rgba(239,225,197,.58); }
.find-logo-wrap { position: relative; }
.find-logo-wrap::before { content: ""; position: absolute; inset: 9%; border: 2px dashed rgba(239,225,197,.22); border-radius: 50%; transform: rotate(7deg); }
.find-logo-wrap img { position: relative; z-index: 1; width: min(430px, 100%); margin: 0 auto; filter: drop-shadow(9px 12px 8px rgba(0,0,0,.42)); }

.contact-board { padding: 42px 44px; display: grid; grid-template-columns: 1fr .95fr; gap: 44px; align-items: center; }
.contact-board h2 { font-size: clamp(2.8rem, 5.5vw, 4.8rem); }
.contact-board > div:first-child > p:last-child { color: rgba(239,225,197,.72); }
.contact-actions { display: grid; gap: 12px; }
.contact-card { display: block; padding: 18px 20px; border: 2px solid #a9814d; background: var(--red); color: #fff; text-decoration: none; box-shadow: 4px 5px 0 rgba(0,0,0,.27); }
.contact-card:hover { background: var(--red-bright); }
.contact-card span { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .16em; color: var(--cream); }
.contact-card strong { display: block; font-family: var(--display); text-transform: uppercase; font-size: clamp(1rem, 2.3vw, 1.35rem); }
.contact-card.muted { background: var(--navy-mid); color: rgba(239,225,197,.72); border-style: dashed; }

.site-footer { margin-top: 20px; padding: 20px; border-top: 4px solid var(--red); background: #071015; box-shadow: inset 0 4px 0 var(--cream); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr auto auto; gap: 18px; align-items: center; text-align: center; }
.footer-inner > span { color: var(--red); font-size: 1.2rem; }
.footer-inner strong { font-family: var(--display); text-transform: uppercase; color: var(--cream-bright); font-size: .9rem; }
.footer-inner p { margin: .12rem 0 0; font-size: .77rem; color: rgba(239,225,197,.56); }
.footer-inner a { color: var(--cream); }
.copyright { white-space: nowrap; }

.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

@media (max-width: 900px) {
  .hero-feature, .smoked-grid, .find-grid, .contact-board { grid-template-columns: 1fr; }
  .hero-feature { padding: 34px 28px 30px; }
  .hero-poster { max-width: 760px; }
  .smoked-copy { border-left: 0; border-top: 4px solid var(--red); padding: 22px 0 0; }
  .three-up { grid-template-columns: 1fr; }
  .three-up article { border-right: 0; border-bottom: 1px dashed rgba(239,225,197,.22); }
  .three-up article:last-child { border-bottom: 0; }
  .find-logo-wrap img { max-width: 360px; }
}

@media (max-width: 720px) {
  body { font-size: 17px; }
  .site-header { box-shadow: 0 4px 0 var(--cream), 0 9px 20px rgba(0,0,0,.3); }
  .nav-wrap { min-height: 68px; padding: 0 16px; }
  .brand img { width: 54px; height: 54px; }
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; left: 0; right: 0; top: 68px; padding: 12px 20px 18px; background: #08131a; flex-direction: column; align-items: stretch; gap: 0; border-bottom: 4px solid var(--red); }
  .site-nav.open { display: flex; }
  .site-nav a, .order-link { padding: 12px 4px; border-bottom: 1px dashed rgba(239,225,197,.18); }
  .order-link { margin-top: 8px; text-align: center; }

  .hero-section, .menu-section, .smoked-section, .find-section, .contact-section { padding-left: 12px; padding-right: 12px; }
  .hero-section { padding-top: 34px; }
  .board-shell { outline-width: 4px; }
  .board-header-art { display: block; width: 100%; height: auto; min-height: 0; max-height: none; object-fit: contain; object-position: center; }
  .hero-feature { padding: 28px 18px 24px; gap: 24px; }
  .hero-copy h1 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .hero-actions .btn { width: 100%; text-align: center; }
  .wood-ribbon { padding: 13px 10px; }
  .hero-poster, .menu-poster { overflow: visible; }
  .hero-poster img, .menu-poster img, .board-header-art, .combo-strip {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: contain;
  }

  .menu-board-shell { padding: 26px 12px 16px; }
  .menu-grid { grid-template-columns: 1fr; gap: 10px; }
  .poster-heading h2 { font-size: clamp(3rem, 17vw, 5rem); }
  .combo-strip { display: block; width: 100%; height: auto; min-height: 0; max-height: none; object-fit: contain; object-position: center; }

  .smoked-board { padding: 0 18px 28px; }
  .paper-ribbon { width: calc(100% + 20px); margin-left: -10px; padding: 11px 13px; font-size: .72rem; letter-spacing: .08em; }
  .smoked-title-wrap h2, .find-grid h2, .contact-board h2 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .three-up { margin-top: 30px; }

  .find-board, .contact-board { padding: 30px 20px; }
  .contact-card strong { font-family: var(--condensed); text-transform: none; font-size: 1.05rem; }

  .footer-inner { grid-template-columns: auto 1fr auto; }
  .footer-inner .copyright { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
