:root {
  --paper: #f6edda;
  --surface: #fff8ea;
  --ink: #17110d;
  --muted: #64584c;
  --red: #c52e19;
  --yellow: #f4b63b;
  --green: #3f7b4a;
  --blue: #1b5e7a;
  --rule: 2px solid var(--ink);
  --radius: 8px;
  --shadow: 8px 8px 0 var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(23, 17, 13, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(23, 17, 13, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
}

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

a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.concept-bar {
  border-bottom: var(--rule);
  background: var(--green);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.55rem 1rem;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: var(--rule);
  background: rgba(246, 237, 218, 0.94);
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.1rem;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: var(--rule);
  border-radius: var(--radius);
  padding: 0.72rem 1rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
}

.button-primary {
  background: var(--red);
  color: #fff8ea;
  box-shadow: 4px 4px 0 var(--ink);
}

.button-secondary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.button-plain {
  background: var(--surface);
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 128px);
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 4vw, 3rem) clamp(3rem, 6vw, 6rem);
}

.hero > *,
.section > *,
.site-footer > * {
  min-width: 0;
}

.eyebrow,
.card-kicker {
  margin: 0 0 0.75rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
}

h1,
h2 {
  font-family: "Archivo Black", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 14ch;
  font-size: clamp(3.3rem, 8vw, 7.5rem);
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.8rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.hero-lede {
  max-width: 45rem;
  margin: 1.25rem 0 0;
  color: #3b3028;
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-media {
  position: relative;
  min-height: 560px;
}

.hero-main-img,
.hero-small-img,
.hours-card {
  border: var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-main-img {
  width: min(100%, 620px);
  height: 470px;
  object-fit: cover;
}

.hero-small-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(48%, 260px);
  aspect-ratio: 1;
  object-fit: cover;
}

.hours-card {
  position: absolute;
  left: 3%;
  bottom: 2.25rem;
  width: min(58%, 330px);
  background: var(--surface);
  padding: 1rem;
}

.hours-card span,
.utility-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hours-card strong {
  display: block;
  font-size: 1rem;
}

.utility-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: var(--rule);
  background: var(--ink);
  color: var(--paper);
}

.utility-strip div {
  min-height: 112px;
  padding: 1.2rem;
  border-right: 2px solid rgba(246, 237, 218, 0.3);
}

.utility-strip div:last-child {
  border-right: 0;
}

.utility-strip span {
  color: var(--yellow);
}

.utility-strip a,
.utility-strip strong {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 900;
}

.section {
  padding: clamp(3.5rem, 7vw, 6.5rem) clamp(1rem, 4vw, 3rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 1fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.menu-grid,
.proof-grid,
.action-grid {
  display: grid;
  gap: 1rem;
}

.menu-grid {
  grid-template-columns: 1.25fr 0.88fr 0.88fr;
}

.menu-card,
blockquote {
  overflow: hidden;
  border: var(--rule);
  border-radius: var(--radius);
  background: var(--surface);
}

.menu-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: var(--rule);
}

.menu-card div {
  padding: 1.2rem;
}

.menu-card p {
  color: #3b3028;
}

.feature-card {
  background: var(--yellow);
  box-shadow: var(--shadow);
}

.feature-card img {
  aspect-ratio: 16 / 9;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background: var(--green);
  color: #fff;
}

.split-section .eyebrow {
  color: var(--yellow);
}

.split-copy p:not(.eyebrow) {
  max-width: 38rem;
  font-size: 1.08rem;
  font-weight: 700;
}

.catering-board {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  border: var(--rule);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.catering-board img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-right: var(--rule);
}

.menu-list {
  padding: 1.4rem;
}

.menu-list ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.menu-list li + li {
  margin-top: 0.7rem;
}

.games-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.games-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border: var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.games-copy p:not(.eyebrow) {
  max-width: 39rem;
  font-size: 1.12rem;
  font-weight: 700;
}

.proof-section {
  background: var(--blue);
  color: #fff;
}

.proof-section .eyebrow {
  color: var(--yellow);
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

blockquote {
  margin: 0;
  padding: 1.4rem;
  color: var(--ink);
}

blockquote p {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 800;
}

cite {
  font-style: normal;
  font-weight: 900;
}

.action-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.action-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.action-grid a {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  border: var(--rule);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.action-grid a::after {
  content: "->";
  color: var(--red);
}

.action-grid a:hover {
  background: var(--yellow);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  border-top: var(--rule);
  background: var(--ink);
  color: var(--paper);
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem);
}

.site-footer img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  margin-bottom: 1rem;
  background: var(--paper);
  border-radius: 50%;
}

.site-footer .eyebrow {
  color: var(--yellow);
}

.site-footer h2 {
  max-width: 12ch;
  margin-bottom: 1.2rem;
  color: var(--paper);
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.disclaimer {
  max-width: 52rem;
  color: rgba(246, 237, 218, 0.72);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .split-section,
  .games-section,
  .action-section,
  .site-footer,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 500px;
  }

  .utility-strip,
  .menu-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catering-board {
    grid-template-columns: 1fr;
  }

  .catering-board img {
    min-height: 280px;
    border-right: 0;
    border-bottom: var(--rule);
  }
}

@media (max-width: 640px) {
  .concept-bar {
    font-size: 0.68rem;
  }

  .site-header {
    position: static;
  }

  .brand span {
    display: none;
  }

  .header-cta {
    padding-inline: 0.8rem;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.2rem);
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .action-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-main-img {
    height: 330px;
  }

  .hero-small-img {
    width: 45%;
  }

  .hours-card {
    width: 68%;
    bottom: 1.25rem;
  }

  .utility-strip,
  .menu-grid,
  .proof-grid,
  .action-grid {
    grid-template-columns: 1fr;
  }

  .utility-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 2px solid rgba(246, 237, 218, 0.3);
  }

  .utility-strip div:last-child {
    border-bottom: 0;
  }
}

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