:root {
  --ink: #17130f;
  --ink-2: #27211b;
  --paper: #f4e9d4;
  --paper-2: #e2d2b8;
  --hot: #e85826;
  --hot-dark: #b93519;
  --acid: #cadb2a;
  --green: #164b3a;
  --onion: #b53a70;
  --white: #fffdf5;
  --silver: #b9b8b0;
  --line: rgba(23, 19, 15, .22);
  --display: "Arial Black", "Helvetica Neue", Impact, sans-serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --shadow: 9px 9px 0 var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

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

body::selection {
  color: var(--paper);
  background: var(--hot);
}

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

a {
  color: inherit;
}

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

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 4px solid var(--acid);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--paper);
  background: var(--ink);
  font-weight: 900;
  transform: translateY(-160%);
}

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

.concept-bar {
  position: relative;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 40px;
  padding: 7px clamp(16px, 3vw, 48px);
  color: var(--paper);
  background: var(--green);
  border-bottom: 1px solid rgba(244, 233, 212, .35);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.concept-bar p {
  margin: 0;
}

.concept-bar a {
  font-weight: 950;
  text-underline-offset: 3px;
}

.concept-pulse {
  width: 9px;
  height: 9px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(202, 219, 42, .15);
  animation: pulse 2.2s ease-out infinite;
}

.site-header {
  position: sticky;
  z-index: 25;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 10px clamp(16px, 4vw, 64px);
  color: var(--paper);
  background: rgba(23, 19, 15, .92);
  border-bottom: 1px solid rgba(244, 233, 212, .2);
  backdrop-filter: blur(16px);
}

.site-header nav {
  display: flex;
  gap: clamp(18px, 3vw, 46px);
}

.site-header nav a {
  position: relative;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--hot);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  transform: scaleX(1);
}

.mini-mark {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  gap: 9px;
  color: inherit;
  text-decoration: none;
}

.mini-mark span {
  padding: 4px 7px;
  color: var(--ink);
  background: var(--hot);
  font-family: var(--display);
  font-size: 1.12rem;
  line-height: 1;
  transform: skew(-5deg);
}

.mini-mark small {
  max-width: 60px;
  color: rgba(244, 233, 212, .65);
  font-size: .52rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .08em;
}

.language-toggle {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 7px;
  padding: 7px;
  color: var(--paper);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: .68rem;
  font-weight: 900;
}

.toggle-track {
  position: relative;
  width: 40px;
  height: 22px;
  background: rgba(244, 233, 212, .17);
  border: 1px solid rgba(244, 233, 212, .42);
  border-radius: 20px;
}

.toggle-track i {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: var(--hot);
  border-radius: 50%;
  transition: transform .25s ease, background-color .25s ease;
}

.language-toggle[aria-pressed="true"] .toggle-track i {
  background: var(--acid);
  transform: translateX(18px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  min-height: calc(100svh - 116px);
  padding: clamp(48px, 7vw, 112px) clamp(20px, 5vw, 80px) 72px;
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 42%, rgba(232, 88, 38, .15), transparent 30%),
    var(--ink);
  isolation: isolate;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(244, 233, 212, .13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 233, 212, .13) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000, transparent 62%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 10%;
  left: -2vw;
  width: 18vw;
  height: 18vw;
  min-width: 200px;
  min-height: 200px;
  content: "";
  border: 1px solid rgba(244, 233, 212, .18);
  border-radius: 50%;
}

.hero-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  max-width: 800px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: rgba(244, 233, 212, .68);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  color: var(--ink);
  background: var(--acid);
  place-items: center;
  transform: rotate(-5deg);
}

.eyebrow--dark {
  color: rgba(23, 19, 15, .66);
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5.3rem, 12.3vw, 12.2rem);
  font-weight: 1000;
  line-height: .72;
  letter-spacing: -.09em;
  text-transform: uppercase;
}

.hero-title-top,
.hero-title-bottom {
  display: block;
}

.hero-title-top {
  color: var(--paper);
}

.hero-title-bottom {
  color: transparent;
  -webkit-text-stroke: clamp(2px, .25vw, 5px) var(--hot);
  transform: translateX(4vw);
}

.hero-lede {
  max-width: 610px;
  margin: clamp(36px, 5vw, 64px) 0 28px;
  padding-left: 22px;
  border-left: 5px solid var(--hot);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.7vw, 1.4rem);
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 24px;
  padding: 13px 17px 13px 20px;
  border: 2px solid var(--paper);
  font-size: .73rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background-color .2s ease;
}

.button i {
  display: grid;
  width: 29px;
  height: 29px;
  font-style: normal;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

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

.button--hot {
  color: var(--ink);
  background: var(--hot);
  border-color: var(--hot);
}

.button--line {
  color: var(--paper);
  background: transparent;
}

.freshness-note {
  margin: 14px 0 0;
  color: rgba(244, 233, 212, .55);
  font-size: .67rem;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 580px;
  place-items: center;
}

.sun-disc {
  position: absolute;
  width: min(36vw, 520px);
  height: min(36vw, 520px);
  background: var(--hot);
  border-radius: 50%;
  box-shadow:
    0 0 0 18px var(--ink),
    0 0 0 20px var(--hot),
    0 0 90px rgba(232, 88, 38, .35);
}

.plate-orbit {
  position: relative;
  width: min(43vw, 650px);
  aspect-ratio: 1;
  animation: hover-plate 6s ease-in-out infinite;
}

.plate-orbit img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(18px 24px 0 rgba(0, 0, 0, .28));
  transform: rotate(7deg);
}

.orbit-copy {
  position: absolute;
  z-index: 3;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--acid);
  font-size: .59rem;
  font-weight: 1000;
  letter-spacing: .11em;
  white-space: nowrap;
}

.orbit-copy--a {
  top: 10%;
  right: -3%;
  transform: rotate(11deg);
}

.orbit-copy--b {
  bottom: 9%;
  left: -3%;
  color: var(--paper);
  background: var(--green);
  transform: rotate(-9deg);
}

.visual-ticket {
  position: absolute;
  right: -2vw;
  bottom: 8%;
  display: grid;
  gap: 3px;
  width: 188px;
  padding: 16px 18px;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 7px 7px 0 var(--hot);
  transform: rotate(4deg);
}

.visual-ticket span {
  font-family: var(--serif);
  font-size: .78rem;
}

.visual-ticket b {
  font-size: .56rem;
  letter-spacing: .08em;
}

.route-stamp {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 2px;
  padding: 8px 12px;
  border: 1px solid currentColor;
  font-size: .55rem;
  letter-spacing: .08em;
  transform: rotate(-90deg);
}

.route-stamp span {
  opacity: .6;
}

.route-stamp--one {
  top: 24%;
  left: 8px;
}

.route-stamp--two {
  right: 7px;
  bottom: 24%;
  color: var(--acid);
  transform: rotate(90deg);
}

.scroll-cue {
  position: absolute;
  bottom: 21px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(244, 233, 212, .5);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .12em;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 42px;
  height: 1px;
  background: var(--hot);
}

.ticker {
  color: var(--ink);
  background: var(--acid);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  overflow: hidden;
}

.ticker div {
  display: flex;
  width: max-content;
  align-items: center;
  animation: ticker 24s linear infinite;
}

.ticker span,
.ticker i {
  padding: 12px 18px;
  font-family: var(--display);
  font-size: clamp(1rem, 2vw, 1.6rem);
  font-style: normal;
  letter-spacing: -.03em;
}

.ticker i {
  padding-inline: 4px;
  color: var(--hot);
}

.manifesto {
  position: relative;
  display: grid;
  grid-template-columns: .24fr .76fr;
  gap: clamp(28px, 6vw, 100px);
  padding: clamp(80px, 11vw, 170px) clamp(20px, 7vw, 112px);
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(23, 19, 15, .09) 50%, transparent 50.2%),
    var(--paper);
  overflow: hidden;
}

.manifesto::after {
  position: absolute;
  top: 65px;
  right: -25px;
  content: "ALAMO";
  color: transparent;
  font-family: var(--display);
  font-size: 11vw;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(23, 19, 15, .1);
  transform: rotate(90deg) translateX(100%);
  transform-origin: right top;
}

.manifesto-kicker {
  display: flex;
  align-self: start;
  gap: 10px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.manifesto-kicker span,
.manifesto-kicker b {
  padding: 11px 7px;
  font-size: .65rem;
  letter-spacing: .16em;
}

.manifesto-kicker span {
  color: var(--paper);
  background: var(--ink);
}

.manifesto-kicker b {
  color: var(--ink);
  border: 1px solid var(--ink);
}

.manifesto-copy {
  max-width: 1020px;
}

.manifesto h2,
.menu-map h2,
.builder h2,
.visit h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.7rem, 8vw, 8.8rem);
  line-height: .85;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.manifesto-copy > p:last-child {
  max-width: 730px;
  margin: 40px 0 0 auto;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.1vw, 1.6rem);
  line-height: 1.5;
}

.manifesto-lanes {
  grid-column: 2;
  display: grid;
  margin-top: 64px;
  border-top: 3px solid var(--ink);
}

.manifesto-lanes article {
  display: grid;
  grid-template-columns: .2fr .3fr .5fr;
  align-items: center;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--ink);
  transition: padding-inline .24s ease, color .24s ease, background-color .24s ease;
}

.manifesto-lanes article:hover {
  padding-inline: 18px;
  color: var(--paper);
  background: var(--green);
}

.manifesto-lanes span {
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.manifesto-lanes h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 2.65rem);
  line-height: 1;
  text-transform: uppercase;
}

.manifesto-lanes p {
  margin: 0;
  font-size: .87rem;
}

.menu-map {
  padding: clamp(80px, 10vw, 150px) clamp(20px, 6vw, 96px);
  color: var(--paper);
  background:
    radial-gradient(circle at 8% 12%, rgba(202, 219, 42, .1), transparent 26%),
    var(--green);
}

.menu-map-head {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 440px);
  align-items: end;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(244, 233, 212, .3);
}

.menu-map h2 {
  max-width: 920px;
  color: var(--paper);
}

.menu-caveat {
  margin: 0;
  padding: 19px;
  color: var(--paper);
  background: rgba(23, 19, 15, .24);
  border-left: 5px solid var(--acid);
  font-family: var(--serif);
  font-size: .88rem;
}

.menu-radar {
  position: relative;
  display: grid;
  grid-template-columns: .7fr repeat(4, 1fr);
  align-items: stretch;
  gap: 0;
  margin-top: 58px;
  border: 2px solid var(--paper);
  transform: rotate(-.5deg);
}

.radar-core {
  display: grid;
  min-height: 250px;
  align-content: space-between;
  padding: 22px;
  color: var(--ink);
  background: var(--acid);
}

.radar-core span {
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.8vw, 3.1rem);
  line-height: .86;
  letter-spacing: -.07em;
}

.radar-core small {
  font-family: var(--serif);
  font-style: italic;
}

.radar-lane {
  position: relative;
  display: grid;
  min-width: 0;
  align-content: space-between;
  padding: 22px 15px;
  color: var(--paper);
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(244, 233, 212, .35);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: color .25s ease, background-color .25s ease;
}

.radar-lane::after {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 70px;
  height: 70px;
  content: "";
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .2;
}

.radar-lane span {
  font-size: .6rem;
  font-weight: 900;
}

.radar-lane b {
  align-self: center;
  font-family: var(--display);
  font-size: clamp(1rem, 2vw, 2rem);
  line-height: .95;
  word-break: break-word;
}

.radar-lane em {
  font-family: var(--serif);
  font-size: .7rem;
  line-height: 1.25;
}

.radar-lane:hover,
.radar-lane.is-active {
  color: var(--ink);
  background: var(--hot);
}

.radar-lane.is-active {
  box-shadow: inset 0 -8px 0 var(--acid);
}

.menu-detail {
  display: grid;
  grid-template-columns: .15fr .5fr .35fr;
  align-items: center;
  gap: 30px;
  min-height: 240px;
  margin-top: 38px;
  padding: 35px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 13px 13px 0 var(--ink);
}

.detail-index {
  color: var(--hot);
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 1;
}

.detail-label {
  margin: 0 0 8px;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.menu-detail h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: .9;
  text-transform: uppercase;
}

.menu-detail p:not(.detail-label) {
  max-width: 560px;
  font-family: var(--serif);
  font-size: 1rem;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.detail-tags span {
  padding: 7px 9px;
  color: var(--paper);
  background: var(--ink);
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: .08em;
  transform: rotate(-2deg);
}

.detail-tags span:nth-child(even) {
  color: var(--ink);
  background: var(--acid);
  transform: rotate(2deg);
}

.builder {
  position: relative;
  padding: clamp(80px, 10vw, 150px) clamp(20px, 5vw, 80px);
  color: var(--paper);
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}

.builder-noise {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .07;
  background-image:
    repeating-linear-gradient(127deg, transparent 0 7px, var(--paper) 8px, transparent 9px 15px);
  mask-image: radial-gradient(circle at 80% 52%, #000, transparent 54%);
}

.builder-head {
  display: grid;
  grid-template-columns: .28fr .72fr;
  align-items: start;
  gap: clamp(34px, 7vw, 110px);
  margin-bottom: 70px;
}

.builder-badge {
  display: grid;
  width: 190px;
  gap: 6px;
  padding: 17px;
  color: var(--ink);
  background: var(--acid);
  box-shadow: 8px 8px 0 var(--hot);
  transform: rotate(-4deg);
}

.builder-badge span {
  font-family: var(--serif);
  font-size: .85rem;
}

.builder-badge b {
  font-size: .62rem;
  letter-spacing: .1em;
}

.builder-head > div:last-child > p:last-child {
  max-width: 670px;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  gap: clamp(40px, 6vw, 100px);
}

.builder-controls {
  border-top: 2px solid rgba(244, 233, 212, .55);
}

.choice-group {
  padding: 27px 0 36px;
  border-bottom: 1px solid rgba(244, 233, 212, .25);
}

.choice-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 19px;
}

.choice-heading span {
  color: var(--hot);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.choice-heading h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  text-transform: uppercase;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.choice {
  position: relative;
  display: grid;
  min-height: 105px;
  align-content: space-between;
  padding: 13px;
  color: var(--paper);
  background: transparent;
  border: 1px solid rgba(244, 233, 212, .42);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
}

.choice::after {
  position: absolute;
  right: -22px;
  bottom: -28px;
  width: 70px;
  height: 70px;
  content: "";
  background: var(--hot);
  border-radius: 50%;
  transform: scale(0);
  transition: transform .25s ease;
}

.choice b {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: clamp(.88rem, 1.45vw, 1.18rem);
}

.choice small {
  position: relative;
  z-index: 1;
  color: rgba(244, 233, 212, .6);
  font-family: var(--serif);
}

.choice:hover,
.choice.is-selected {
  color: var(--ink);
  background: var(--paper);
}

.choice.is-selected {
  box-shadow: inset 0 -7px 0 var(--acid);
}

.choice:hover::after,
.choice.is-selected::after {
  transform: scale(1);
}

.choice:hover small,
.choice.is-selected small {
  color: var(--ink);
}

.choice-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.pill {
  padding: 10px 14px;
  color: var(--paper);
  background: transparent;
  border: 1px solid rgba(244, 233, 212, .52);
  border-radius: 99px;
  cursor: pointer;
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .07em;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.pill:hover {
  transform: translateY(-3px);
}

.pill.is-selected {
  color: var(--ink);
  background: var(--hot);
  border-color: var(--hot);
}

.pill--cheese.is-selected {
  background: #f1c13f;
  border-color: #f1c13f;
}

.pill--onion.is-selected {
  color: var(--paper);
  background: var(--onion);
  border-color: var(--onion);
}

.pill--pico.is-selected {
  color: var(--paper);
  background: var(--hot-dark);
  border-color: var(--hot-dark);
}

.pill--salsa.is-selected {
  color: var(--paper);
  background: #39783a;
  border-color: #39783a;
}

.builder-stage {
  position: sticky;
  top: 102px;
  align-self: start;
}

.foil-frame {
  position: relative;
  min-height: 420px;
  padding: 44px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.48), transparent 18% 38%, rgba(255,255,255,.35) 42%, transparent 56%),
    repeating-linear-gradient(120deg, #8e918d 0 7px, #d6d6ce 8px 13px, #7b7d79 14px 20px);
  border: 8px solid var(--paper);
  box-shadow: 14px 14px 0 var(--hot);
  transform: rotate(1.5deg);
  overflow: hidden;
}

.foil-frame::before {
  position: absolute;
  inset: 25px;
  content: "";
  background: var(--ink);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px var(--paper);
}

.concept-dish {
  position: relative;
  z-index: 2;
  width: min(100%, 360px);
  aspect-ratio: 1;
  margin: 0 auto;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}

.tortilla,
.filling,
.finish {
  position: absolute;
  display: block;
  transition: all .35s cubic-bezier(.2, .8, .2, 1);
}

.tortilla {
  width: 43%;
  height: 61%;
  top: 19%;
  background:
    radial-gradient(circle at 30% 35%, rgba(104, 56, 20, .25) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 67%, rgba(104, 56, 20, .18) 0 3px, transparent 4px),
    #dba44f;
  background-size: 37px 37px, 51px 51px, auto;
  border: 5px solid var(--ink);
  border-radius: 50% 50% 40% 40%;
}

.tortilla--one { left: 4%; transform: rotate(-18deg); }
.tortilla--two { left: 29%; top: 12%; }
.tortilla--three { right: 2%; transform: rotate(18deg); }

.filling {
  z-index: 2;
  width: 28%;
  height: 19%;
  top: 46%;
  background:
    radial-gradient(circle at 10% 50%, #7b3220 0 8px, transparent 9px),
    radial-gradient(circle at 35% 34%, #4a2319 0 12px, transparent 13px),
    radial-gradient(circle at 67% 63%, #8c3f25 0 11px, transparent 12px),
    radial-gradient(circle at 88% 30%, #3a1f17 0 10px, transparent 11px);
  filter: drop-shadow(0 4px 0 rgba(0,0,0,.3));
}

.filling--one { left: 12%; transform: rotate(-15deg); }
.filling--two { left: 37%; top: 40%; }
.filling--three { right: 9%; transform: rotate(15deg); }

.finish {
  z-index: 3;
  width: 24%;
  height: 8px;
  top: 55%;
  background: #f3c43f;
  border-radius: 20px;
  box-shadow: 0 -14px 0 #f3c43f, 0 14px 0 #f3c43f;
}

.finish--one { left: 14%; transform: rotate(-16deg); }
.finish--two { left: 39%; top: 49%; }
.finish--three { right: 11%; transform: rotate(16deg); }

.concept-dish[data-finish="onion"] .finish {
  background: var(--onion);
  box-shadow: 12px -10px 0 var(--onion), -8px 12px 0 var(--onion);
  height: 5px;
}

.concept-dish[data-finish="pico"] .finish {
  width: 11%;
  height: 11%;
  background: var(--hot-dark);
  border: 4px dotted var(--acid);
  border-radius: 3px;
  box-shadow: 20px -9px 0 var(--paper), -9px 15px 0 var(--green);
}

.concept-dish[data-finish="salsa"] .finish {
  height: 6px;
  background: #39783a;
  box-shadow: 9px 12px 0 var(--hot-dark), -7px -11px 0 #39783a;
}

.concept-dish[data-dish="potato"] {
  transform: rotate(-5deg) scale(.93);
}

.concept-dish[data-dish="potato"] .tortilla {
  top: 15%;
  left: 17%;
  width: 67%;
  height: 70%;
  background: #8c5532;
  border-radius: 48% 52% 45% 55%;
  transform: none;
}

.concept-dish[data-dish="potato"] .tortilla--two,
.concept-dish[data-dish="potato"] .tortilla--three,
.concept-dish[data-dish="potato"] .filling--two,
.concept-dish[data-dish="potato"] .filling--three,
.concept-dish[data-dish="potato"] .finish--two,
.concept-dish[data-dish="potato"] .finish--three {
  opacity: 0;
  transform: scale(.5);
}

.concept-dish[data-dish="potato"] .filling--one {
  top: 35%;
  left: 29%;
  width: 44%;
  height: 33%;
  transform: none;
}

.concept-dish[data-dish="potato"] .finish--one {
  top: 53%;
  left: 34%;
  width: 35%;
  transform: rotate(5deg);
}

.concept-dish[data-dish="sync"] {
  transform: rotate(8deg) scale(.94);
}

.concept-dish[data-dish="sync"] .tortilla {
  top: 22%;
  left: 13%;
  width: 75%;
  height: 57%;
  border-radius: 50%;
  transform: rotate(-12deg);
}

.concept-dish[data-dish="sync"] .tortilla--two {
  top: 28%;
  transform: rotate(7deg) scale(.92);
}

.concept-dish[data-dish="sync"] .tortilla--three,
.concept-dish[data-dish="sync"] .filling--two,
.concept-dish[data-dish="sync"] .filling--three,
.concept-dish[data-dish="sync"] .finish--two,
.concept-dish[data-dish="sync"] .finish--three {
  opacity: 0;
}

.concept-dish[data-dish="sync"] .filling--one {
  top: 43%;
  left: 29%;
  width: 49%;
  transform: rotate(-3deg);
}

.concept-dish[data-dish="sync"] .finish--one {
  top: 50%;
  left: 31%;
  width: 43%;
  transform: rotate(-3deg);
}

.concept-dish[data-dish="beans"] {
  transform: scale(.9);
}

.concept-dish[data-dish="beans"] .tortilla {
  top: 13%;
  left: 13%;
  width: 74%;
  height: 74%;
  background: #2d2420;
  border-color: var(--paper);
  border-radius: 50%;
  transform: none;
}

.concept-dish[data-dish="beans"] .tortilla--two,
.concept-dish[data-dish="beans"] .tortilla--three,
.concept-dish[data-dish="beans"] .finish--two,
.concept-dish[data-dish="beans"] .finish--three {
  opacity: 0;
}

.concept-dish[data-dish="beans"] .filling {
  top: 31%;
  left: 27%;
  width: 48%;
  height: 40%;
  background:
    radial-gradient(ellipse at 10% 50%, #814c32 0 8px, transparent 9px),
    radial-gradient(ellipse at 35% 34%, #a3673d 0 12px, transparent 13px),
    radial-gradient(ellipse at 67% 63%, #6b3c28 0 11px, transparent 12px),
    radial-gradient(ellipse at 88% 30%, #a56840 0 10px, transparent 11px);
  transform: none;
}

.concept-dish[data-dish="beans"] .filling--two,
.concept-dish[data-dish="beans"] .filling--three {
  opacity: .85;
  transform: rotate(30deg) translate(8px, -5px);
}

.concept-dish[data-dish="beans"] .finish--one {
  top: 55%;
  left: 33%;
  width: 34%;
  transform: none;
}

.stage-caption {
  position: absolute;
  z-index: 4;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 5px;
  color: var(--paper);
  background: var(--ink);
  font-size: .48rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: center;
}

.demo-receipt {
  position: relative;
  z-index: 6;
  width: 83%;
  margin: -52px 0 0 9%;
  padding: 23px 25px 28px;
  color: var(--ink);
  background:
    linear-gradient(135deg, transparent 8px, var(--white) 0) top left,
    linear-gradient(225deg, transparent 8px, var(--white) 0) top right,
    linear-gradient(315deg, transparent 8px, var(--white) 0) bottom right,
    linear-gradient(45deg, transparent 8px, var(--white) 0) bottom left;
  background-size: 51% 51%;
  background-repeat: no-repeat;
  filter: drop-shadow(8px 8px 0 rgba(0,0,0,.35));
  transform: rotate(-2deg);
}

.receipt-head,
.receipt-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 2px dashed var(--ink);
  font-size: .58rem;
  font-weight: 950;
  letter-spacing: .08em;
}

.receipt-head b {
  padding: 4px 6px;
  color: var(--paper);
  background: var(--hot-dark);
}

.demo-receipt dl {
  margin: 15px 0;
}

.demo-receipt dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 7px 0;
  border-bottom: 1px dotted rgba(23,19,15,.35);
}

.demo-receipt dt {
  font-size: .7rem;
  text-transform: uppercase;
}

.demo-receipt dd {
  margin: 0;
  font-family: var(--display);
  font-size: .84rem;
  text-align: right;
  text-transform: uppercase;
}

.receipt-total {
  padding: 12px 0;
  border-top: 2px dashed var(--ink);
  border-bottom: 0;
}

.receipt-total b {
  color: var(--hot-dark);
}

.demo-receipt > p {
  margin: 8px 0 14px;
  font-family: var(--serif);
  font-size: .69rem;
  line-height: 1.35;
}

.reset-button {
  width: 100%;
  padding: 9px;
  color: var(--paper);
  background: var(--ink);
  border: 0;
  cursor: pointer;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.visit {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, .8fr) minmax(0, 1.2fr);
  min-height: 760px;
  background: var(--paper);
  overflow: hidden;
}

.visit-route {
  position: relative;
  min-height: 760px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(244,233,212,.65) 48% 52%, transparent 52%),
    repeating-linear-gradient(0deg, transparent 0 68px, rgba(244,233,212,.08) 69px 70px),
    var(--hot);
  border-right: 4px solid var(--ink);
}

.route-line {
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 8px;
  transform: translateX(-50%) rotate(7deg);
}

.route-line::before {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 3px;
  width: 2px;
  content: "";
  background: var(--ink);
}

.route-line i {
  width: 9px;
  height: 9px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.route-line b {
  width: 18px;
  height: 18px;
  margin-left: -5px;
  background: var(--acid);
  border: 4px solid var(--ink);
  transform: rotate(45deg);
}

.road-label {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 6px 90px;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--display);
  font-size: 1.1rem;
  white-space: nowrap;
  transform: translate(-50%, -50%) rotate(-83deg);
}

.map-dot {
  position: absolute;
  top: 52%;
  left: 55%;
  display: grid;
  width: 94px;
  height: 94px;
  color: var(--ink);
  background: var(--acid);
  border: 6px solid var(--ink);
  border-radius: 50% 50% 50% 8px;
  font-family: var(--display);
  font-size: 1.25rem;
  place-items: center;
  transform: rotate(-45deg);
  box-shadow: 8px 8px 0 rgba(23,19,15,.3);
}

.map-dot::first-line {
  transform: rotate(45deg);
}

.map-north {
  position: absolute;
  top: 22px;
  right: 25px;
  font-family: var(--display);
  font-size: 1.1rem;
}

.visit-content {
  align-self: center;
  padding: clamp(70px, 10vw, 145px) clamp(25px, 8vw, 125px);
}

.visit h2 {
  max-width: 940px;
}

.visit-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  margin: 50px 0 16px;
  padding: 26px 0;
  border-top: 3px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.visit-facts div {
  display: grid;
  gap: 10px;
}

.visit-facts span {
  color: rgba(23,19,15,.62);
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.visit-facts b {
  font-family: var(--display);
  font-size: clamp(1rem, 2vw, 1.45rem);
  line-height: 1.2;
  text-transform: uppercase;
}

.verify-note {
  margin: 0 0 26px;
  color: rgba(23,19,15,.62);
  font-family: var(--serif);
  font-size: .74rem;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.big-route-link {
  display: inline-flex;
  min-width: 270px;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  color: var(--paper);
  background: var(--ink);
  box-shadow: 7px 7px 0 var(--hot);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease;
}

.big-route-link:hover {
  transform: translate(-3px, -3px);
  box-shadow: 10px 10px 0 var(--acid);
}

.visit-actions > a:not(.big-route-link) {
  font-size: .7rem;
  font-weight: 900;
  text-underline-offset: 5px;
}

.closing {
  position: relative;
  padding: clamp(70px, 9vw, 130px) clamp(20px, 6vw, 96px);
  color: var(--paper);
  background: var(--hot);
  border-top: 5px solid var(--ink);
  overflow: hidden;
}

.closing::before {
  position: absolute;
  right: -4vw;
  bottom: -6vw;
  width: 26vw;
  height: 26vw;
  content: "";
  background: var(--acid);
  border: 8px solid var(--ink);
  border-radius: 50%;
}

.closing p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.8rem, 9.2vw, 10rem);
  line-height: .84;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.closing p:nth-child(2) {
  margin-left: 8vw;
  color: var(--ink);
}

.closing i {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 2px var(--paper);
}

.closing-stamp {
  position: absolute;
  z-index: 2;
  right: 8vw;
  bottom: 14%;
  display: grid;
  gap: 3px;
  padding: 14px;
  color: var(--paper);
  background: var(--ink);
  border: 2px solid var(--paper);
  transform: rotate(-7deg);
}

.closing-stamp span {
  font-family: var(--display);
}

.closing-stamp small {
  font-size: .5rem;
  letter-spacing: .1em;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 54px clamp(20px, 6vw, 96px);
  color: var(--paper);
  background: var(--ink);
  border-top: 1px solid rgba(244,233,212,.2);
}

footer > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.footer-mark {
  flex: 0 0 auto;
  color: var(--acid);
  font-family: var(--display);
  font-size: 1.1rem;
  text-decoration: none;
}

footer p {
  max-width: 500px;
  margin: 0;
  color: rgba(244,233,212,.65);
  font-size: .69rem;
  line-height: 1.55;
}

footer > div:last-child {
  justify-content: flex-end;
}

footer > div:last-child a {
  flex: 0 0 auto;
  font-size: .67rem;
  font-weight: 900;
  text-underline-offset: 5px;
}

/* Progressive reveal added by local JavaScript */
.reveal-target {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2,.8,.2,1);
}

.reveal-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(202, 219, 42, .45); }
  70% { box-shadow: 0 0 0 8px rgba(202, 219, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(202, 219, 42, 0); }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes hover-plate {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  }

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

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

  .plate-orbit {
    width: min(47vw, 550px);
  }

  .manifesto {
    grid-template-columns: 70px 1fr;
  }

  .menu-radar {
    grid-template-columns: repeat(4, 1fr);
  }

  .radar-core {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto;
    min-height: 0;
  }

  .builder-layout {
    grid-template-columns: 1fr;
  }

  .builder-stage {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: 1fr minmax(280px, .7fr);
    align-items: center;
    gap: 24px;
  }

  .demo-receipt {
    width: 100%;
    margin: 0 0 0 -40px;
  }

  .visit {
    grid-template-columns: .62fr 1.38fr;
  }

  footer,
  footer > div {
    grid-template-columns: 1fr;
  }

  footer > div {
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .concept-bar {
    grid-template-columns: auto 1fr;
    font-size: .58rem;
  }

  .concept-bar a {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 65px;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 65px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(4.9rem, 22.6vw, 9.5rem);
  }

  .hero-title-bottom {
    transform: translateX(5vw);
  }

  .hero-lede {
    max-width: 92%;
  }

  .hero-visual {
    min-height: 480px;
    margin-top: 30px;
  }

  .sun-disc {
    width: min(76vw, 470px);
    height: min(76vw, 470px);
  }

  .plate-orbit {
    width: min(88vw, 560px);
  }

  .visual-ticket {
    right: 0;
  }

  .route-stamp--one {
    display: none;
  }

  .manifesto {
    grid-template-columns: 1fr;
    padding-block: 90px;
  }

  .manifesto-kicker {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .manifesto-lanes {
    grid-column: 1;
  }

  .manifesto-lanes article {
    grid-template-columns: .2fr .8fr;
  }

  .manifesto-lanes p {
    grid-column: 2;
  }

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

  .menu-radar {
    grid-template-columns: 1fr 1fr;
    transform: none;
  }

  .radar-lane {
    min-height: 180px;
  }

  .radar-lane:nth-of-type(odd) {
    border-left: 0;
  }

  .radar-lane:nth-of-type(n+3) {
    border-top: 1px solid rgba(244,233,212,.35);
  }

  .menu-detail {
    grid-template-columns: .23fr .77fr;
  }

  .detail-tags {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .builder-head {
    grid-template-columns: 1fr;
  }

  .builder-badge {
    margin-left: 4px;
  }

  .choice-grid {
    grid-template-columns: 1fr 1fr;
  }

  .builder-stage {
    grid-template-columns: 1fr;
  }

  .demo-receipt {
    width: 86%;
    margin: -40px auto 0;
  }

  .visit {
    grid-template-columns: 1fr;
  }

  .visit-route {
    min-height: 390px;
    border-right: 0;
    border-bottom: 4px solid var(--ink);
  }

  .route-line {
    top: 50%;
    right: 7%;
    bottom: auto;
    left: 7%;
    flex-direction: row;
    width: auto;
    height: 8px;
    transform: translateY(-50%) rotate(-5deg);
  }

  .route-line::before {
    top: 3px;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 2px;
  }

  .route-line b {
    margin-top: -5px;
    margin-left: 0;
  }

  .road-label {
    transform: translate(-50%, -50%) rotate(-5deg);
  }

  .map-dot {
    top: 53%;
    left: 58%;
  }

  .closing-stamp {
    display: none;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  footer > div:last-child {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .concept-bar {
    padding-inline: 12px;
  }

  .site-header {
    padding-inline: 14px;
  }

  .mini-mark small {
    display: none;
  }

  .hero {
    padding-inline: 16px;
    padding-bottom: 55px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 23.5vw, 7rem);
  }

  .hero-title-bottom {
    -webkit-text-stroke-width: 2px;
  }

  .hero-lede {
    max-width: none;
    margin-top: 34px;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    justify-content: space-between;
  }

  .hero-visual {
    min-height: 370px;
  }

  .visual-ticket {
    bottom: 0;
    width: 166px;
  }

  .route-stamp--two {
    display: none;
  }

  .manifesto,
  .menu-map,
  .builder {
    padding-inline: 16px;
  }

  .manifesto h2,
  .menu-map h2,
  .builder h2,
  .visit h2 {
    font-size: clamp(3.1rem, 17vw, 5.2rem);
  }

  .manifesto-copy > p:last-child {
    margin-top: 28px;
    font-size: 1.05rem;
  }

  .manifesto-lanes article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .manifesto-lanes p {
    grid-column: 1;
  }

  .radar-core {
    grid-column: 1 / -1;
  }

  .radar-lane {
    min-height: 150px;
    padding: 15px 11px;
  }

  .radar-lane b {
    font-size: 1.05rem;
  }

  .menu-detail {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .detail-index {
    font-size: 3.5rem;
  }

  .detail-tags {
    grid-column: 1;
  }

  .choice-heading {
    display: grid;
  }

  .choice {
    min-height: 94px;
  }

  .foil-frame {
    min-height: 330px;
    padding: 30px;
  }

  .demo-receipt {
    width: 94%;
  }

  .visit-content {
    padding-inline: 17px;
  }

  .visit-facts {
    grid-template-columns: 1fr;
  }

  .big-route-link {
    width: 100%;
    min-width: 0;
  }

  .closing {
    padding-inline: 16px;
  }

  .closing p {
    font-size: clamp(3.3rem, 18vw, 6rem);
  }

  .closing p:nth-child(2) {
    margin-left: 0;
  }

  footer {
    padding-inline: 17px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .ticker div,
  .plate-orbit {
    transform: none !important;
  }

  .reveal-target {
    opacity: 1;
    transform: none;
  }
}
