:root {
  --paper: #f7efe0;
  --bone: #fffaf1;
  --ink: #0b0a08;
  --muted: #5e5549;
  --tomato: #d93119;
  --curry: #f6bd2f;
  --herb: #0d6b57;
  --rule: 2px solid var(--ink);
  --max: 1180px;
  --gutter: clamp(18px, 4vw, 42px);
  --display: Impact, Haettenschweiler, "Arial Black", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--tomato);
}

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

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

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

.concept-bar {
  background: var(--ink);
  color: var(--bone);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: .6rem var(--gutter);
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem var(--gutter);
  border-bottom: var(--rule);
}

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

.nav-links,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  font-size: .85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .78rem 1rem;
  border: var(--rule);
  background: var(--tomato);
  color: var(--bone);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.button:hover {
  background: var(--ink);
  color: var(--curry);
}

.button-secondary {
  background: var(--curry);
  color: var(--ink);
}

.button-ghost {
  background: transparent;
  color: var(--ink);
}

.button-small {
  min-height: 42px;
  padding: .55rem .8rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) var(--gutter) 1.5rem;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 .75rem;
  color: var(--herb);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: normal;
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  line-height: .95;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  font-size: 5.6rem;
}

h2 {
  font-size: 3.4rem;
}

h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-text {
  max-width: 620px;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}

.hero-card {
  position: relative;
  align-self: stretch;
  min-height: 420px;
  border: var(--rule);
  background: var(--bone);
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.hero-stamp {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: calc(100% - 2rem);
  border: var(--rule);
  background: var(--curry);
  padding: .55rem .75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(2rem, 5vw, 4rem);
}

.info-strip div {
  min-width: 0;
  border: var(--rule);
  border-right: 0;
  background: var(--bone);
  padding: 1rem;
}

.info-strip div:last-child {
  border-right: var(--rule);
}

.info-strip span,
.menu-grid span {
  display: block;
  color: var(--tomato);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.info-strip strong {
  display: block;
  margin: .2rem 0;
  font-size: 1.05rem;
}

.info-strip p {
  margin: 0;
  color: var(--muted);
}

.section,
.owner-cta {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 5.5rem) var(--gutter);
  border-top: var(--rule);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(260px, .55fr);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.section-heading p:last-child,
.catering-section > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.menu-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.menu-grid article,
.proof-grid article {
  min-height: 220px;
  border: var(--rule);
  background: var(--bone);
  padding: 1rem;
}

.menu-grid article:nth-child(2),
.proof-grid article:nth-child(2) {
  background: #fff2c8;
}

.menu-grid article:nth-child(3) {
  background: #e2f0e9;
}

.menu-grid p,
.proof-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.proof-section {
  display: grid;
  grid-template-columns: .75fr 1fr;
  gap: 1.5rem;
}

.proof-grid {
  grid-template-columns: repeat(3, 1fr);
}

.proof-grid strong {
  display: block;
  font-family: var(--display);
  font-size: 2.7rem;
  line-height: .95;
  text-transform: uppercase;
}

.catering-section {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 1.5rem 2rem;
  align-items: center;
  background: var(--ink);
  color: var(--bone);
}

.catering-section .eyebrow,
.catering-section p {
  color: var(--curry);
}

.gallery-section {
  padding-bottom: clamp(2.5rem, 7vw, 5.5rem);
}

.menu-pages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.menu-pages a {
  display: block;
  border: var(--rule);
  background: var(--bone);
  overflow: hidden;
}

.menu-pages img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
}

.owner-cta {
  background: var(--curry);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: end;
}

.owner-cta h2 {
  max-width: 880px;
  font-size: 3rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem var(--gutter);
  border-top: var(--rule);
}

.site-footer img {
  width: 78px;
  height: 64px;
  object-fit: contain;
  margin-bottom: .75rem;
}

.site-footer p {
  max-width: 720px;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 900px) {
  .site-header,
  .hero,
  .section-heading,
  .proof-section,
  .catering-section,
  .owner-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-header {
    display: grid;
  }

  .info-strip,
  .menu-grid,
  .proof-grid,
  .menu-pages {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-strip div:nth-child(2n) {
    border-right: var(--rule);
  }

  .info-strip div:nth-child(n + 3) {
    border-top: 0;
  }

  .hero-card,
  .hero-card img {
    min-height: 320px;
  }

  h1 {
    font-size: 4.2rem;
  }

  h2,
  .owner-cta h2 {
    font-size: 2.65rem;
  }

  .proof-grid strong {
    font-size: 2.25rem;
  }
}

@media (max-width: 560px) {
  .nav-links {
    gap: .7rem;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2,
  .owner-cta h2 {
    font-size: 2.15rem;
  }

  .hero {
    padding-top: 1.5rem;
  }

  .info-strip,
  .menu-grid,
  .proof-grid,
  .menu-pages {
    grid-template-columns: 1fr;
  }

  .info-strip div,
  .info-strip div:nth-child(2n),
  .info-strip div:last-child {
    border-right: var(--rule);
  }

  .info-strip div + div {
    border-top: 0;
  }

  .button {
    width: 100%;
  }
}

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