:root {
  --cream: #fff2d7;
  --ink: #18352d;
  --red: #ff5a36;
  --blue: #314fd5;
  --yellow: #ffd83d;
  --white: #fffaf0;
  --line: 3px solid var(--ink);
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  overflow-x: clip;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 99;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
a {
  color: inherit;
}
.site-header {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  border-bottom: var(--line);
  background: var(--cream);
  position: relative;
  z-index: 20;
}
.brand {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.15rem;
  line-height: 0.8;
  text-decoration: none;
  transform: rotate(-2deg);
}
.brand span {
  display: block;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 700;
}
.site-nav a {
  text-decoration: none;
}
.site-nav a:not(.nav-call):hover {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}
.nav-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.3rem;
  border: var(--line);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--ink);
  transition: 0.18s;
}
.nav-call {
  background: var(--yellow);
}
.nav-call:hover,
.button:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--ink);
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
}
.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(480px, 1.22fr);
  min-height: calc(100vh - 88px);
  position: relative;
}
.hero-copy {
  padding: clamp(4rem, 8vw, 8rem) 4vw 8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 0.78rem;
}
.hero h1,
.section-heading h2,
.story h2,
.visit h2 {
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.055em;
  margin: 0.4rem 0;
  line-height: 0.87;
}
.hero h1 {
  font-size: clamp(4rem, 8vw, 8.6rem);
}
.hero h1 span {
  color: var(--red);
  -webkit-text-stroke: 2px var(--ink);
}
.hero-intro {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  max-width: 33rem;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-top: 1.2rem;
}
.button-dark {
  background: var(--ink);
  color: #fff;
}
.text-link {
  font-weight: 700;
  text-underline-offset: 5px;
}
.hero-image-wrap {
  position: relative;
  min-height: 640px;
  border-left: var(--line);
  overflow: hidden;
  background: var(--ink);
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stamp {
  position: absolute;
  right: 2rem;
  bottom: 3rem;
  margin: 0;
  width: 140px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background: var(--yellow);
  border: var(--line);
  font-family: "Archivo Black";
  text-transform: uppercase;
  transform: rotate(8deg);
  box-shadow: 6px 6px 0 var(--ink);
}
.ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--blue);
  color: #fff;
  border-block: var(--line);
  padding: 0.8rem 0;
  overflow: hidden;
  font-weight: 700;
  white-space: nowrap;
}
.ticker div {
  width: max-content;
  animation: ticker 20s linear infinite;
}
.ticker span {
  color: var(--yellow);
  padding: 0 1.3rem;
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
.menu-section {
  padding: clamp(5rem, 9vw, 9rem) 6vw;
  background: var(--white);
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  gap: 2rem;
  align-items: end;
  border-bottom: var(--line);
  padding-bottom: 2rem;
}
.section-heading h2 {
  font-size: clamp(3.2rem, 7vw, 7rem);
}
.section-heading > p:last-child {
  line-height: 1.6;
}
.menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 2rem 0;
}
.filter {
  font: 700 0.9rem "DM Sans";
  border: 2px solid var(--ink);
  background: transparent;
  padding: 0.7rem 1rem;
  cursor: pointer;
}
.filter.is-active,
.filter:hover {
  background: var(--yellow);
}
.menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: var(--line);
  margin-bottom: 2.5rem;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 1rem;
  border-bottom: var(--line);
}
.menu-item:nth-child(odd) {
  border-right: var(--line);
  padding-left: 0;
}
.menu-item h3 {
  font: 1.15rem "Archivo Black";
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}
.menu-item p {
  margin: 0;
  line-height: 1.5;
  max-width: 34rem;
}
.menu-item strong {
  white-space: nowrap;
  font-size: 1.1rem;
}
.menu-item[hidden] {
  display: none;
}
.diet {
  font: 700 0.7rem "DM Sans";
  background: var(--ink);
  color: white;
  padding: 0.2rem 0.35rem;
}
.button-outline {
  background: var(--red);
}
.menu-note {
  font-size: 0.75rem;
  opacity: 0.7;
  max-width: 45rem;
  margin-top: 1.5rem;
}
.story {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 8vw;
  padding: 8vw 6vw;
  background: var(--blue);
  color: white;
}
.story-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.story-collage img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border: var(--line);
  box-shadow: 8px 8px 0 var(--ink);
}
.story-collage img:first-child {
  grid-row: 1/3;
  height: 520px;
  transform: rotate(-3deg);
}
.story-collage img:nth-child(2) {
  transform: rotate(4deg) translate(-10px, 10px);
}
.story-collage img:nth-child(3) {
  transform: rotate(-2deg) translate(15px, -8px);
}
.story-copy {
  align-self: center;
}
.story h2 {
  font-size: clamp(3rem, 5vw, 5.5rem);
}
.story-copy > p {
  font-size: 1.15rem;
  line-height: 1.7;
}
.story blockquote {
  margin: 2rem 0 0;
  padding: 1.5rem 0;
  border-block: 2px solid white;
  font-size: 1.35rem;
  font-weight: 700;
}
.visit {
  background: var(--yellow);
  padding: 7vw 6vw;
}
.visit-title {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: start;
}
.visit h2 {
  font-size: clamp(3rem, 6vw, 6rem);
  text-align: right;
}
.visit h2 span {
  font-size: 0.45em;
  color: var(--blue);
  letter-spacing: -0.03em;
}
.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: var(--line);
  margin-top: 3rem;
  background: var(--cream);
}
.visit-grid > div {
  padding: 2rem;
  min-height: 250px;
}
.visit-grid > div + div {
  border-left: var(--line);
}
.visit-grid h3 {
  font-family: "Archivo Black";
  text-transform: uppercase;
}
.visit-grid p {
  line-height: 1.65;
}
.visit-grid a {
  font-weight: 700;
  text-underline-offset: 4px;
}
.socials {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
footer {
  background: var(--ink);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  padding: 4rem 6vw;
}
footer p:last-child {
  text-align: right;
}
.footer-mark {
  font: 2.2rem/0.8 "Archivo Black";
}
.reveal {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-image-wrap {
    border-left: 0;
    border-top: var(--line);
    min-height: 520px;
  }
  .section-heading {
    grid-template-columns: 1fr;
  }
  .story {
    grid-template-columns: 1fr;
  }
  .visit-grid {
    grid-template-columns: 1fr;
  }
  .visit-grid > div + div {
    border-left: 0;
    border-top: var(--line);
  }
}
@media (max-width: 720px) {
  .site-header {
    height: 72px;
  }
  .nav-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    place-content: center;
    gap: 7px;
    border: 2px solid var(--ink);
  }
  .nav-toggle span {
    display: block;
    width: 22px;
    height: 3px;
    background: var(--ink);
  }
  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    background: var(--cream);
    border-bottom: var(--line);
    padding: 1rem 4vw;
  }
  .site-nav[hidden] {
    display: none;
  }
  .site-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--ink);
  }
  .nav-call {
    margin-top: 0.8rem;
  }
  .hero {
    min-height: auto;
  }
  .hero-copy {
    padding: 4.5rem 5vw 6rem;
  }
  .hero h1 {
    font-size: clamp(3.7rem, 20vw, 6rem);
  }
  .hero-image-wrap {
    min-height: 410px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .stamp {
    width: 110px;
    right: 1rem;
    bottom: 2.5rem;
  }
  .menu-section,
  .story,
  .visit {
    padding: 5rem 5vw;
  }
  .menu-list {
    grid-template-columns: 1fr;
  }
  .menu-item:nth-child(odd) {
    border-right: 0;
    padding-left: 1rem;
  }
  .story-collage img {
    height: 200px;
    transform: none !important;
  }
  .story-collage img:first-child {
    height: 360px;
  }
  .visit-title {
    display: block;
  }
  .visit h2 {
    text-align: left;
  }
  .visit-grid > div {
    min-height: auto;
  }
  .footer-mark {
    font-size: 1.6rem;
  }
  footer {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  footer p:last-child {
    text-align: left;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
