:root {
  --paper: #fff3dc;
  --paper-deep: #f5dfbc;
  --maize: #f2a91f;
  --ink: #171816;
  --teal: #147f82;
  --teal-dark: #0d5558;
  --chili: #d94b35;
  --white: #fffdf7;
  --rule: 2px solid var(--ink);
  --radius: 20px;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Franklin Gothic Condensed", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

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

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
  outline: 4px solid var(--maize);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border: var(--rule);
  border-radius: 999px;
  background: var(--white);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 2rem;
  padding: 10px clamp(20px, 4vw, 64px);
  border-bottom: var(--rule);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(12px);
}

.wordmark {
  display: inline-flex;
  min-width: max-content;
  flex-direction: column;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark span {
  font-family: var(--display);
  font-size: 1.7rem;
  letter-spacing: 0.015em;
  line-height: 0.78;
}

.wordmark small {
  margin-top: 6px;
  color: var(--chili);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.19em;
  line-height: 1;
}

.primary-nav {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(22px, 3vw, 48px);
}

.primary-nav a {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav > a:not(.nav-call) {
  position: relative;
}

.primary-nav > a:not(.nav-call)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--chili);
  content: "";
  transform-origin: left;
  transition: transform 160ms ease;
}

.primary-nav > a:not(.nav-call):hover::after {
  transform: scaleX(1);
}

.nav-call {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 14px;
  border: var(--rule);
  border-radius: 999px;
  background: var(--maize);
}

.nav-call span {
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(850px, calc(100svh - 76px));
  grid-template-columns: repeat(12, minmax(0, 1fr));
  isolation: isolate;
  overflow: hidden;
  border-bottom: var(--rule);
}

.hero::before {
  position: absolute;
  z-index: -3;
  top: 0;
  right: 0;
  width: 43%;
  height: 100%;
  background: var(--teal);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -2;
  top: 18%;
  right: 10%;
  width: clamp(160px, 18vw, 280px);
  aspect-ratio: 1;
  border: 2px solid color-mix(in srgb, var(--ink) 36%, transparent);
  border-radius: 50%;
  content: "";
}

.hero-ribbon {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  width: 34px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid color-mix(in srgb, var(--ink) 38%, transparent);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-copy {
  z-index: 3;
  display: flex;
  grid-column: 1 / 9;
  flex-direction: column;
  align-items: flex-start;
  align-self: center;
  padding: clamp(82px, 9vw, 140px) 24px 110px clamp(72px, 7vw, 116px);
}

.hero-copy .eyebrow {
  margin-bottom: clamp(18px, 3vh, 34px);
  color: var(--chili);
}

.hero h1 {
  position: relative;
  z-index: 5;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(6rem, 11.4vw, 11rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.75;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero h1 span:last-child {
  margin-left: clamp(34px, 6vw, 96px);
  color: var(--chili);
  text-shadow: 2px 2px 0 var(--paper), 4px 4px 0 var(--ink);
}

.hero-intro {
  max-width: 570px;
  margin: clamp(30px, 5vh, 54px) 0 0 clamp(34px, 6vw, 96px);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.05vw, 2rem);
  font-weight: 700;
  line-height: 1.18;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 0 clamp(34px, 6vw, 96px);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 13px 20px;
  border: var(--rule);
  border-radius: 13px 13px 13px 3px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}

.button-primary {
  background: var(--maize);
}

.button-secondary {
  background: var(--paper);
}

.hero-hours {
  display: flex;
  max-width: 570px;
  align-items: baseline;
  gap: 14px;
  margin: 24px 0 0 clamp(34px, 6vw, 96px);
  font-size: 0.78rem;
}

.hero-hours strong {
  font-weight: 900;
  text-transform: uppercase;
}

.hero-hours span {
  color: #56564f;
}

.hero-collage {
  position: relative;
  z-index: 2;
  grid-column: 6 / 13;
  min-height: 100%;
}

.hero-frame {
  position: absolute;
  margin: 0;
}

.hero-frame figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 12px;
  border: var(--rule);
  border-top: 0;
  background: var(--white);
  font-family: var(--serif);
  font-size: clamp(0.78rem, 1vw, 0.96rem);
  font-weight: 700;
}

.hero-frame figcaption span {
  font-family: var(--sans);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-frame-primary {
  z-index: 2;
  top: 11%;
  right: -4%;
  width: min(66%, 610px);
  transform: rotate(2deg);
}

.hero-frame-secondary {
  z-index: 3;
  bottom: 8%;
  left: 2%;
  width: min(46%, 390px);
  transform: rotate(-3.5deg);
}

.media-slot {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  border: var(--rule);
  background: var(--paper-deep);
  color: var(--ink);
  isolation: isolate;
}

.media-slot::before,
.media-slot::after {
  position: absolute;
  z-index: -1;
  content: "";
}

.media-slot::before {
  inset: -28%;
  transform: rotate(-15deg);
  background:
    linear-gradient(90deg, transparent 47%, color-mix(in srgb, var(--ink) 18%, transparent) 48% 52%, transparent 53%),
    linear-gradient(transparent 47%, color-mix(in srgb, var(--ink) 18%, transparent) 48% 52%, transparent 53%);
  background-size: 78px 78px;
}

.media-slot::after {
  width: 46%;
  aspect-ratio: 1;
  border: 2px solid currentColor;
  border-radius: 50%;
  opacity: 0.32;
}

.slot-tacos {
  background: var(--maize);
}

.slot-burrito {
  background: var(--chili);
  color: var(--white);
}

.slot-bowl {
  background: var(--teal);
  color: var(--white);
}

.slot-sweet {
  background: var(--paper-deep);
}

.slot-number {
  position: absolute;
  top: 14px;
  left: 16px;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 0.9;
}

.slot-state {
  padding: 10px 12px;
  border: 2px solid currentColor;
  background: color-mix(in srgb, currentColor 7%, transparent);
  font-size: clamp(0.58rem, 0.8vw, 0.72rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-align: center;
}

.slot-ratio {
  position: absolute;
  right: 14px;
  bottom: 12px;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.media-slot.is-approved-image {
  display: block;
  background: var(--paper-deep);
}

.media-slot.is-approved-image::before,
.media-slot.is-approved-image::after {
  content: none;
}

.media-slot.is-approved-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero-proof {
  position: absolute;
  z-index: 6;
  right: 20px;
  bottom: 18px;
  display: flex;
  width: min(38%, 520px);
  align-items: stretch;
  border: var(--rule);
  background: var(--white);
  transform: rotate(-1deg);
}

.hero-proof p {
  display: grid;
  flex: 1;
  grid-template-columns: auto 1fr;
  gap: 0 9px;
  margin: 0;
  padding: 12px 14px;
}

.hero-proof p + p {
  border-left: 1px solid var(--ink);
}

.hero-proof strong {
  grid-row: 1 / 3;
  font-family: var(--serif);
  font-size: 2.1rem;
  line-height: 1;
}

.hero-proof span {
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof small {
  color: #606059;
  font-size: 0.54rem;
  line-height: 1.3;
}

.hero-scroll {
  position: absolute;
  z-index: 8;
  bottom: 22px;
  left: clamp(72px, 7vw, 116px);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-scroll span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  margin-right: 8px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.menu-index {
  position: relative;
  display: grid;
  min-height: 730px;
  grid-template-columns: minmax(300px, 0.8fr) minmax(440px, 1.25fr);
  gap: clamp(50px, 8vw, 130px);
  padding: clamp(90px, 10vw, 150px) clamp(28px, 7vw, 110px);
  overflow: hidden;
  border-bottom: var(--rule);
  background: var(--maize);
}

.menu-index::after {
  position: absolute;
  right: -6vw;
  bottom: -20vw;
  width: 46vw;
  aspect-ratio: 1;
  border: 2px solid color-mix(in srgb, var(--ink) 26%, transparent);
  border-radius: 50%;
  content: "";
}

.index-heading {
  position: relative;
  z-index: 2;
}

.index-heading h2,
.food-story-heading h2,
.menu-heading h2,
.review-title-wrap h2,
.visit-title-wrap h2 {
  margin: 20px 0 26px;
  font-family: var(--display);
  font-size: clamp(4.4rem, 7.4vw, 7.2rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.78;
  text-transform: uppercase;
}

.index-heading > p:last-child {
  max-width: 430px;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.4;
}

.index-list {
  position: relative;
  z-index: 2;
  align-self: center;
  margin: 0;
  padding: 0;
  border-top: var(--rule);
  list-style: none;
}

.index-list li {
  border-bottom: var(--rule);
}

.index-list a {
  display: grid;
  min-height: 112px;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 8px;
  text-decoration: none;
  transition: padding 150ms ease, background 150ms ease;
}

.index-list a:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: color-mix(in srgb, var(--white) 28%, transparent);
}

.index-number {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
}

.index-list b,
.index-list small {
  display: block;
}

.index-list b {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  line-height: 1.1;
}

.index-list small {
  margin-top: 5px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.index-list i {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-style: normal;
}

.index-note {
  position: absolute;
  z-index: 3;
  bottom: 18px;
  left: 22px;
  padding-left: 13px;
  border-left: 4px solid var(--ink);
  transform: rotate(-1.5deg);
}

.index-note span,
.index-note strong {
  display: block;
}

.index-note span {
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.index-note strong {
  margin-top: 4px;
  font-family: var(--serif);
  line-height: 1.15;
}

.food-story {
  position: relative;
  padding-bottom: clamp(86px, 8vw, 130px);
  overflow: hidden;
  border-bottom: var(--rule);
  background: var(--ink);
  color: var(--paper);
}

.food-story::before {
  position: absolute;
  top: 280px;
  right: -130px;
  width: 420px;
  aspect-ratio: 1;
  border: 2px solid color-mix(in srgb, var(--paper) 18%, transparent);
  border-radius: 50%;
  content: "";
}

.food-story-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.7fr);
  gap: 40px;
  padding: 105px clamp(28px, 7vw, 110px) 10px;
}

.food-story-heading .eyebrow,
.food-story-heading h2 {
  grid-column: 1;
}

.food-story-heading h2 {
  max-width: 840px;
  margin-bottom: 0;
  color: var(--maize);
}

.food-story-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / 3;
  max-width: 460px;
  align-self: end;
  padding-left: 18px;
  border-left: 4px solid var(--chili);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
}

.feature-mosaic {
  display: grid;
  max-width: 1500px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(60px, 7vw, 110px) clamp(24px, 3vw, 46px);
  align-items: start;
  margin: clamp(72px, 7vw, 110px) auto 0;
  padding: 0 clamp(28px, 4vw, 62px);
}

.food-feature {
  position: relative;
  min-width: 0;
}

.food-feature .media-slot {
  box-shadow: 10px 10px 0 color-mix(in srgb, var(--paper) 18%, transparent);
}

.edge-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 2px 0;
}

.edge-caption b {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.05;
}

.edge-caption span {
  max-width: 240px;
  color: #d7d0c0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-align: right;
  text-transform: uppercase;
}

.feature-tacos {
  grid-column: 1 / 8;
  grid-row: 1;
  margin-top: 72px;
}

.feature-burrito {
  grid-column: 9 / 13;
  grid-row: 1;
}

.feature-bowl {
  grid-column: 6 / 13;
  grid-row: 2;
}

.feature-sweet {
  grid-column: 2 / 6;
  grid-row: 2;
  margin-top: 84px;
}

.food-boundary {
  position: relative;
  margin: clamp(72px, 7vw, 110px) clamp(28px, 7vw, 110px) 0;
  padding-left: 14px;
  border-left: 4px solid var(--maize);
  color: #c9c1af;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.5;
}

.menu-preview {
  position: relative;
  padding: clamp(90px, 10vw, 150px) clamp(28px, 7vw, 110px);
  overflow: hidden;
  border-bottom: var(--rule);
  background: var(--paper);
}

.menu-preview::before {
  position: absolute;
  top: -10vw;
  left: -8vw;
  width: 32vw;
  min-width: 300px;
  aspect-ratio: 1;
  border: 2px solid color-mix(in srgb, var(--teal) 30%, transparent);
  border-radius: 50%;
  content: "";
}

.menu-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(300px, 0.8fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
}

.menu-heading h2 {
  margin-bottom: 0;
  color: var(--teal);
}

.menu-heading > p {
  max-width: 520px;
  margin: 0;
  padding-left: 18px;
  border-left: 4px solid var(--chili);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
}

.menu-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(500px, 1.25fr);
  gap: clamp(40px, 7vw, 110px);
}

.menu-tabs {
  display: flex;
  flex-direction: column;
  align-self: start;
  border-top: var(--rule);
}

.menu-tabs button {
  display: grid;
  min-height: 76px;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 8px;
  border: 0;
  border-bottom: var(--rule);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.menu-tabs button span {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
}

.menu-tabs button b {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-tabs button[aria-selected="true"] {
  padding-left: 14px;
  background: var(--maize);
}

.menu-panel {
  min-width: 0;
}

.menu-panel-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 24px;
}

.menu-panel-number {
  font-family: var(--display);
  font-size: clamp(4.4rem, 6vw, 6rem);
  line-height: 0.8;
}

.menu-panel-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.6vw, 3.8rem);
  line-height: 1;
}

.menu-panel-heading p {
  max-width: 600px;
  margin: 10px 0 0;
  color: #5e5b53;
}

.menu-items {
  border-top: var(--rule);
}

.menu-item {
  display: grid;
  min-height: 108px;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 44%, transparent);
}

.menu-item-number {
  padding-top: 3px;
  color: var(--chili);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.menu-item h4 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.menu-item p {
  max-width: 680px;
  margin: 7px 0 0;
  color: #5e5b53;
  font-size: 0.92rem;
}

.menu-item-price {
  margin-top: 5px;
  color: var(--teal-dark);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.menu-disclaimer {
  margin: 24px 0 0;
  padding: 12px 14px;
  border: 1px solid var(--ink);
  background: var(--paper-deep);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.menu-margin-note {
  position: absolute;
  right: -40px;
  bottom: -94px;
  display: flex;
  width: 250px;
  flex-direction: column;
  padding: 18px;
  border: var(--rule);
  border-radius: var(--radius) var(--radius) var(--radius) 3px;
  background: var(--teal);
  color: var(--white);
  transform: rotate(2deg);
}

.menu-margin-note span {
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.menu-margin-note a {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 700;
}

.menu-margin-note small {
  margin-top: 8px;
  font-size: 0.62rem;
  line-height: 1.35;
}

.reviews {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(500px, 1.15fr);
  gap: clamp(50px, 8vw, 130px);
  padding: clamp(90px, 10vw, 150px) clamp(28px, 7vw, 110px);
  overflow: hidden;
  border-bottom: var(--rule);
  background: var(--chili);
  color: var(--white);
}

.review-title-wrap h2 {
  color: var(--maize);
}

.featured-review {
  position: relative;
  align-self: center;
  margin: 0;
  padding: 48px 0 30px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.featured-review > span {
  position: absolute;
  top: -17px;
  left: 0;
  display: inline-grid;
  min-width: 44px;
  min-height: 34px;
  place-items: center;
  padding: 5px 10px;
  border: 2px solid currentColor;
  border-radius: 999px;
  background: var(--chili);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
}

.featured-review p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
}

.featured-review cite {
  display: block;
  margin-top: 26px;
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-themes {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 30px;
  margin-left: 18%;
}

.review-themes p {
  margin: 0;
  padding: 22px;
  border: 2px solid currentColor;
  border-radius: var(--radius) var(--radius) 4px var(--radius);
}

.review-themes span,
.review-themes strong,
.review-themes small {
  display: block;
}

.review-themes span {
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.review-themes strong {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.15;
}

.review-themes small {
  margin-top: 8px;
  color: #ffe2d9;
  font-size: 0.76rem;
  line-height: 1.45;
}

.visit {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  overflow: hidden;
  background: var(--teal);
  color: var(--white);
}

.visit-title-wrap {
  display: flex;
  grid-column: 1 / -1;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding: clamp(72px, 7vw, 110px) clamp(28px, 7vw, 110px) clamp(48px, 5vw, 72px);
  border-bottom: 1px solid color-mix(in srgb, var(--white) 45%, transparent);
}

.visit-title-wrap h2 {
  margin-bottom: 0;
  color: var(--maize);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.visit-ticket {
  position: relative;
  z-index: 2;
  display: grid;
  grid-column: 1 / 7;
  grid-row: 2;
  align-self: stretch;
  grid-template-columns: 1fr 1fr;
  margin: clamp(52px, 5vw, 76px) 20px clamp(64px, 6vw, 92px) clamp(28px, 7vw, 110px);
  border: var(--rule);
  border-radius: 30px 30px 6px 30px;
  background: var(--paper);
  color: var(--ink);
}

.visit-ticket article {
  min-height: 230px;
  padding: 28px;
}

.visit-ticket article:nth-child(odd) {
  border-right: 1px solid var(--ink);
}

.visit-ticket article:nth-child(-n + 2) {
  border-bottom: 1px solid var(--ink);
}

.ticket-label {
  color: var(--chili);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.visit-ticket p {
  margin: 14px 0;
  font-family: var(--serif);
  font-size: 1.34rem;
  font-weight: 700;
  line-height: 1.25;
}

.visit-ticket small {
  display: block;
  max-width: 260px;
  margin-top: 10px;
  color: #5c5a54;
  font-size: 0.72rem;
  line-height: 1.4;
}

.ticket-phone {
  display: block;
  margin-top: 16px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  font-weight: 700;
  line-height: 0.95;
  text-decoration: none;
}

.map-wrap {
  position: relative;
  z-index: 1;
  grid-column: 7 / -1;
  grid-row: 2;
  height: 500px;
  margin: clamp(52px, 5vw, 76px) clamp(28px, 7vw, 110px) clamp(64px, 6vw, 92px) 20px;
  border: var(--rule);
  background: var(--paper-deep);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.82) contrast(0.95);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.5fr auto;
  gap: 30px;
  align-items: center;
  padding: 36px clamp(20px, 4vw, 64px);
  background: var(--ink);
  color: var(--paper);
}

.site-footer div {
  display: flex;
  flex-direction: column;
}

.site-footer b {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-footer span,
.site-footer p {
  color: #c9c1af;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.site-footer > a {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-actions {
  display: none;
}

@media (max-width: 1120px) {
  .hero {
    min-height: 790px;
  }

  .hero h1 {
    font-size: clamp(5.5rem, 10.8vw, 8.6rem);
  }

  .hero-copy {
    grid-column: 1 / 10;
  }

  .hero-collage {
    grid-column: 6 / 13;
  }

  .hero-frame-primary {
    width: 68%;
  }

  .hero-frame-secondary {
    left: 0;
    width: 48%;
  }

  .hero-proof {
    width: 45%;
  }

  .feature-mosaic {
    gap: 72px 30px;
  }

  .menu-margin-note {
    right: 0;
  }

  .map-wrap {
    height: 460px;
  }
}

@media (max-width: 900px) {
  .site-header {
    gap: 1rem;
  }

  .primary-nav {
    gap: 20px;
  }

  .nav-call span {
    display: none;
  }

  .hero {
    min-height: 920px;
  }

  .hero::before {
    width: 48%;
  }

  .hero-copy {
    grid-column: 1 / 11;
    align-self: start;
    padding-top: 85px;
  }

  .hero h1 {
    font-size: clamp(5rem, 13.2vw, 7.7rem);
  }

  .hero-intro,
  .hero-actions,
  .hero-hours {
    margin-left: 34px;
  }

  .hero-collage {
    position: absolute;
    right: 0;
    bottom: 62px;
    left: 0;
    min-height: 450px;
  }

  .hero-frame-primary {
    top: 0;
    right: -3%;
    width: 47%;
  }

  .hero-frame-secondary {
    bottom: 4%;
    left: 28%;
    width: 34%;
  }

  .hero-proof {
    right: auto;
    bottom: 16px;
    left: 24px;
    width: 49%;
  }

  .hero-scroll {
    display: none;
  }

  .menu-index {
    grid-template-columns: 1fr;
  }

  .index-heading > p:last-child {
    max-width: 600px;
  }

  .food-story-heading {
    grid-template-columns: 1fr;
  }

  .food-story-heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .feature-mosaic {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 66px 24px;
  }

  .feature-tacos {
    grid-column: 1 / 6;
    grid-row: 1;
    width: auto;
    margin-top: 0;
  }

  .feature-burrito {
    grid-column: 3 / 7;
    grid-row: 2;
    width: auto;
  }

  .feature-bowl {
    grid-column: 1 / 7;
    grid-row: 3;
    width: auto;
  }

  .feature-sweet {
    grid-column: 1 / 4;
    grid-row: 4;
    width: auto;
    margin-top: 0;
  }

  .menu-heading,
  .reviews {
    grid-template-columns: 1fr;
  }

  .menu-heading {
    gap: 20px;
  }

  .menu-heading > p {
    max-width: 680px;
  }

  .menu-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 34px;
  }

  .menu-margin-note {
    position: static;
    grid-column: 2;
    width: min(100%, 360px);
    margin-top: 20px;
  }

  .review-themes {
    margin-left: 0;
  }

  .featured-review > span {
    left: 0;
  }

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

  .visit-title-wrap {
    grid-column: 1 / -1;
    padding-bottom: 70px;
  }

  .visit-ticket {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 52px 28px 22px;
    transform: none;
  }

  .map-wrap {
    grid-column: 1 / -1;
    grid-row: 3;
    width: auto;
    height: 280px;
    min-height: 0;
    margin: 0 28px 60px;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 68px;
  }

  body {
    padding-bottom: 66px;
  }

  .site-header {
    min-height: 66px;
    padding: 8px 18px;
  }

  .wordmark span {
    font-size: 1.48rem;
  }

  .wordmark small {
    font-size: 0.52rem;
  }

  .nav-toggle {
    display: inline-flex;
    min-width: 72px;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
    margin-left: auto;
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font: inherit;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .nav-toggle i,
  .nav-toggle i::before,
  .nav-toggle i::after {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    content: "";
  }

  .nav-toggle i {
    position: relative;
  }

  .nav-toggle i::before,
  .nav-toggle i::after {
    position: absolute;
    left: 0;
  }

  .nav-toggle i::before {
    top: -6px;
  }

  .nav-toggle i::after {
    top: 6px;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 2px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 8px 18px 18px;
    border-bottom: var(--rule);
    background: var(--paper);
  }

  .nav-open .primary-nav {
    display: flex;
  }

  .primary-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid color-mix(in srgb, var(--ink) 32%, transparent);
  }

  .primary-nav > a:not(.nav-call)::after {
    display: none;
  }

  .nav-call {
    justify-content: center;
    margin-top: 10px;
    border: var(--rule) !important;
  }

  .nav-call span {
    display: inline;
  }

  .hero {
    min-height: 900px;
  }

  .hero::before {
    top: 50%;
    width: 54%;
    height: 50%;
  }

  .hero::after {
    top: 59%;
    right: 2%;
    width: 42vw;
  }

  .hero-ribbon {
    display: none;
  }

  .hero-copy {
    grid-column: 1 / -1;
    align-self: start;
    padding: 58px 20px 0;
  }

  .hero-copy .eyebrow {
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 21vw, 6.6rem);
    line-height: 0.79;
  }

  .hero h1 span:last-child {
    max-width: 96%;
    margin-top: 7px;
    margin-left: 0;
    white-space: normal;
    text-shadow: 1px 1px 0 var(--paper), 3px 3px 0 var(--ink);
  }

  .hero-intro {
    max-width: 93%;
    margin: 25px 0 0;
    font-size: 1.24rem;
  }

  .hero-actions {
    width: 100%;
    margin: 20px 0 0;
  }

  .button {
    min-height: 49px;
    flex: 1;
    gap: 16px;
    padding: 12px 13px;
    font-size: 0.67rem;
  }

  .hero-hours {
    position: relative;
    z-index: 5;
    display: block;
    width: calc(100vw - 40px);
    max-width: 420px;
    margin: 18px 0 0;
    padding: 6px 10px 7px 0;
    background: var(--paper);
    box-shadow: 140px 0 0 var(--paper);
  }

  .hero-hours span {
    display: block;
    margin-top: 3px;
    color: var(--ink);
    font-weight: 700;
  }

  .hero-collage {
    bottom: 35px;
    min-height: 390px;
  }

  .hero-frame figcaption {
    padding: 7px 8px;
    font-size: 0.68rem;
  }

  .hero-frame figcaption span {
    display: none;
  }

  .hero-frame-primary {
    top: 18px;
    right: -7%;
    width: 72%;
  }

  .hero-frame-secondary {
    bottom: 0;
    left: -7%;
    width: 50%;
  }

  .slot-number {
    top: 9px;
    left: 10px;
    font-size: 2.7rem;
  }

  .slot-state {
    padding: 8px;
    font-size: 0.5rem;
  }

  .slot-ratio {
    right: 9px;
    bottom: 7px;
    font-size: 0.48rem;
  }

  .hero-proof {
    right: 10px;
    bottom: 12px;
    left: auto;
    display: block;
    width: 54%;
    transform: rotate(-2deg);
  }

  .hero-proof p {
    grid-template-columns: 50px 1fr;
    padding: 8px 9px;
  }

  .hero-proof p + p {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .hero-proof strong {
    font-size: 1.52rem;
  }

  .hero-proof span {
    font-size: 0.5rem;
  }

  .hero-proof small {
    font-size: 0.45rem;
  }

  .menu-index,
  .menu-preview,
  .reviews {
    padding: 72px 20px;
  }

  .menu-index {
    min-height: auto;
    gap: 42px;
    padding-bottom: 120px;
  }

  .index-heading h2,
  .food-story-heading h2,
  .menu-heading h2,
  .review-title-wrap h2,
  .visit-title-wrap h2 {
    margin-top: 15px;
    font-size: clamp(3.55rem, 17vw, 5.2rem);
  }

  .index-heading > p:last-child {
    font-size: 1rem;
  }

  .index-list a {
    min-height: 91px;
    grid-template-columns: 42px 1fr auto;
    gap: 11px;
  }

  .index-number {
    font-size: 1.3rem;
  }

  .index-list b {
    font-size: 1.32rem;
  }

  .index-list small {
    font-size: 0.54rem;
  }

  .index-note {
    bottom: 25px;
  }

  .food-story {
    min-height: auto;
    padding: 72px 20px 110px;
  }

  .food-story-heading {
    display: block;
    padding: 0;
  }

  .food-story-heading > p:last-child {
    margin-top: 26px;
    font-size: 0.96rem;
  }

  .feature-mosaic {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 56px;
    margin-top: 58px;
    padding: 0;
  }

  .food-feature {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 88%;
    transform: none;
  }

  .food-feature:nth-child(even) {
    align-self: flex-end;
  }

  .food-feature:nth-child(2) {
    width: 72%;
    margin-top: -14px;
  }

  .food-feature:nth-child(3) {
    width: 94%;
  }

  .food-feature:nth-child(4) {
    width: 66%;
  }

  .food-feature .media-slot {
    box-shadow: 7px 7px 0 color-mix(in srgb, var(--paper) 18%, transparent);
  }

  .edge-caption {
    display: block;
    padding-top: 13px;
  }

  .edge-caption b {
    display: block;
    font-size: 1.3rem;
  }

  .edge-caption span {
    display: block;
    max-width: none;
    margin-top: 5px;
    font-size: 0.54rem;
    text-align: left;
  }

  .food-boundary {
    position: static;
    margin: 70px 0 0;
    padding-left: 12px;
    font-size: 0.5rem;
  }

  .menu-heading {
    display: block;
    margin-bottom: 42px;
  }

  .menu-heading > p {
    margin-top: 24px;
    font-size: 0.96rem;
  }

  .menu-layout {
    display: block;
  }

  .menu-tabs {
    position: sticky;
    z-index: 10;
    top: 65px;
    display: flex;
    width: calc(100% + 40px);
    flex-direction: row;
    gap: 0;
    margin: 0 -20px 42px;
    padding: 0 20px;
    overflow-x: auto;
    border-top: var(--rule);
    border-bottom: var(--rule);
    background: var(--paper);
    scrollbar-width: thin;
  }

  .menu-tabs button {
    min-width: max-content;
    min-height: 61px;
    grid-template-columns: auto auto;
    gap: 8px;
    padding: 10px 14px;
    border-right: 1px solid color-mix(in srgb, var(--ink) 34%, transparent);
    border-bottom: 0;
  }

  .menu-tabs button[aria-selected="true"] {
    padding-left: 14px;
  }

  .menu-tabs button span {
    font-size: 0.8rem;
  }

  .menu-tabs button b {
    font-size: 0.64rem;
  }

  .menu-panel-heading {
    grid-template-columns: 55px 1fr;
    gap: 12px;
  }

  .menu-panel-number {
    font-size: 3.7rem;
  }

  .menu-panel-heading h3 {
    font-size: 2.05rem;
  }

  .menu-panel-heading p {
    font-size: 0.8rem;
  }

  .menu-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    padding: 18px 0;
  }

  .menu-item h4 {
    font-size: 1.18rem;
  }

  .menu-item p {
    font-size: 0.78rem;
  }

  .menu-item-price {
    grid-column: 2;
    font-size: 0.49rem;
  }

  .menu-margin-note {
    width: 100%;
    margin-top: 30px;
    transform: none;
  }

  .reviews {
    gap: 34px;
  }

  .featured-review {
    padding-top: 40px;
  }

  .featured-review > span {
    top: -17px;
    left: 0;
    font-size: 0.62rem;
  }

  .featured-review p {
    font-size: 2rem;
  }

  .featured-review cite {
    font-size: 0.55rem;
    line-height: 1.5;
  }

  .review-themes {
    grid-template-columns: 1fr;
    margin-top: 6px;
  }

  .visit-title-wrap {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 74px 20px 58px;
  }

  .visit-ticket {
    grid-template-columns: 1fr;
    margin: 34px 14px 18px;
    border-radius: 22px 22px 4px 22px;
  }

  .visit-ticket article {
    min-height: 0;
    padding: 22px;
  }

  .visit-ticket article:nth-child(odd) {
    border-right: 0;
  }

  .visit-ticket article:not(:last-child) {
    border-bottom: 1px solid var(--ink);
  }

  .visit-ticket p {
    font-size: 1.18rem;
  }

  .ticket-phone {
    font-size: 2.25rem;
  }

  .map-wrap {
    width: auto;
    height: 280px;
    margin: 0 14px 44px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 20px;
    padding: 30px 20px;
  }

  .site-footer p {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }

  .mobile-actions {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: var(--rule);
    background: var(--paper);
  }

  .mobile-actions a {
    display: grid;
    min-height: 58px;
    place-items: center;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-actions a:first-child {
    border-right: var(--rule);
    background: var(--maize);
  }
}

@media (max-width: 390px) {
  .hero {
    min-height: 920px;
  }

  .hero h1 {
    font-size: 4.45rem;
  }

  .hero-intro {
    font-size: 1.14rem;
  }

  .hero-collage {
    min-height: 375px;
  }

  .hero-frame-primary {
    top: 26px;
    width: 74%;
  }

  .hero-frame-secondary {
    bottom: 4px;
    width: 52%;
  }

  .hero-proof {
    width: 56%;
  }

  .index-heading h2,
  .food-story-heading h2,
  .menu-heading h2,
  .review-title-wrap h2,
  .visit-title-wrap h2 {
    font-size: 3.68rem;
  }

  .index-list small {
    max-width: 180px;
  }
}

/* Hero safety pass: preserve the editorial character without content collisions. */
.hero {
  min-height: min(820px, calc(100svh - 76px));
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto auto minmax(0, 1fr);
}

.hero::before {
  top: 39%;
  width: 69%;
  height: 61%;
}

.hero-copy {
  display: contents;
}

.hero-copy .eyebrow {
  position: relative;
  z-index: 3;
  grid-column: 2 / 7;
  grid-row: 1;
  align-self: end;
  margin: clamp(56px, 6vw, 88px) 0 20px;
}

.hero h1 {
  display: grid;
  position: relative;
  z-index: 4;
  grid-column: 2 / 12;
  grid-row: 2;
  grid-template-columns: 0.36fr 0.64fr;
  gap: clamp(24px, 3vw, 52px);
  max-width: 100%;
  margin: 0 0 clamp(42px, 4vw, 64px);
  font-size: clamp(5.2rem, 7.8vw, 8rem);
  line-height: 0.82;
}

.hero h1 span {
  white-space: nowrap;
}

.hero h1 span:last-child {
  margin-top: 0;
  margin-left: 0;
}

.hero-command {
  position: relative;
  z-index: 3;
  grid-column: 2 / 5;
  grid-row: 3;
  align-self: start;
  padding: 6px 28px 0 0;
}

.hero-intro {
  max-width: 420px;
  margin: 0;
}

.hero-actions {
  position: static;
  margin: 26px 0 0;
}

.hero-hours {
  position: static;
  margin: 24px 0 0;
}

.hero-collage {
  position: relative;
  display: flex;
  min-height: 0;
  grid-column: 5 / 10;
  grid-row: 3;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(18px, 2vw, 34px) 84px;
}

.hero-frame,
.hero-frame-primary {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: min(100%, 640px);
  transform: rotate(0.8deg);
}

.hero-proof {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  width: auto;
  display: block;
  grid-column: 10 / 13;
  grid-row: 3;
  align-self: center;
  margin: 0 clamp(24px, 3vw, 48px) 84px 0;
  transform: none;
}

.hero-proof p + p {
  border-top: 1px solid var(--ink);
  border-left: 0;
}

@media (max-width: 1120px) {
  .hero {
    min-height: 760px;
  }

  .hero h1 {
    font-size: clamp(4.8rem, 8.6vw, 6rem);
  }

  .hero-command {
    grid-column: 2 / 5;
    padding-right: 18px;
  }

  .hero-proof {
    width: auto;
    grid-column: 10 / 13;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .hero::before {
    top: 47%;
    width: 100%;
    height: 53%;
  }

  .hero::after {
    top: 56%;
  }

  .hero-copy {
    display: flex;
    grid-column: 1;
    grid-row: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 72px 40px 38px;
  }

  .hero-copy .eyebrow {
    position: static;
    align-self: auto;
    margin: 0 0 20px;
  }

  .hero-command {
    width: 100%;
    padding: 0;
  }

  .hero h1 {
    display: block;
    font-size: clamp(5rem, 13vw, 7rem);
    line-height: 0.84;
    margin: 0;
  }

  .hero-intro {
    position: static;
    max-width: 640px;
    margin: 28px 0 0;
    padding: 0;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-hours {
    margin-top: 22px;
  }

  .hero-collage {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    min-height: 0;
    grid-column: 1;
    grid-row: 2;
    justify-content: flex-end;
    padding: 32px 40px 18px;
  }

  .hero-frame,
  .hero-frame-primary {
    width: min(68%, 620px);
  }

  .hero-proof {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    display: flex;
    width: auto;
    grid-column: 1;
    grid-row: 3;
    margin: 0 40px 68px;
    transform: none;
  }

  .hero-proof p + p {
    border-top: 0;
    border-left: 1px solid var(--ink);
  }
}

@media (max-width: 680px) {
  .hero::before {
    top: 52%;
    width: 100%;
    height: 48%;
  }

  .hero-copy {
    padding: 54px 20px 30px;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 18vw, 5.4rem);
    line-height: 0.86;
  }

  .hero h1 span:last-child {
    margin-top: 8px;
  }

  .hero-collage {
    min-height: 0;
    padding: 24px 20px 14px;
  }

  .hero-frame,
  .hero-frame-primary {
    width: 94%;
    transform: none;
  }

  .hero-proof {
    right: auto;
    bottom: auto;
    left: auto;
    display: block;
    width: auto;
    margin: 0 20px 42px;
    transform: none;
  }


  .hero-proof p + p {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .hero-hours {
    width: auto;
    max-width: 100%;
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
