:root {
  --ink: #07333e;
  --ink-2: #1f615f;
  --cream: #fff1cd;
  --paper: #fffaf0;
  --orange: #ef4823;
  --orange-dark: #c9341d;
  --aqua: #2b7e72;
  --lime: #bad63d;
  --yellow: #ffc21a;
  --sky: #3d8ead;
  --charcoal: #061f27;
  --line: rgba(7, 51, 62, 0.2);
  --display: "Bebas Neue", Impact, sans-serif;
  --slab: "Zilla Slab", Georgia, serif;
  --body: "Archivo", Arial, sans-serif;
  --pad: clamp(1.25rem, 4vw, 5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
address { font-style: normal; }

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: .75rem;
  left: .75rem;
  padding: .7rem 1rem;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 5.5rem;
  padding: .7rem var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  color: var(--ink);
  background: rgba(255, 250, 240, .96);
  border-bottom: 2px solid var(--ink);
  box-shadow: 0 8px 0 rgba(118, 218, 211, .2);
  backdrop-filter: blur(12px);
  transition: background .3s ease, min-height .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  min-height: 4.6rem;
  background: rgba(255, 250, 240, .98);
  box-shadow: 0 10px 24px rgba(16, 37, 29, .13);
}
.brand {
  width: 9rem;
  padding: .35rem .65rem;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--orange);
  transform: rotate(-1deg);
  transition: width .3s ease;
}
.brand img { width: 100%; height: auto; }
.site-header.scrolled .brand { width: 7.4rem; }
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.4rem);
}
.main-nav a {
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.45rem;
  width: 100%;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; }

.button {
  min-height: 3.15rem;
  padding: .75rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  border: 2px solid currentColor;
  font-size: .8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 transparent;
  transition: transform .18s ease, box-shadow .18s ease, color .18s ease, background .18s ease;
}
.button:hover,
.button:focus-visible { transform: translate(-3px, -3px); }
.button--order,
.button--primary { color: var(--ink); background: var(--lime); border-color: var(--lime); }
.button--order:hover,
.button--order:focus-visible,
.button--primary:hover,
.button--primary:focus-visible { box-shadow: 5px 5px 0 var(--orange); }
.button--ghost { color: var(--ink); background: rgba(255, 250, 240, .66); border-color: var(--ink); }
.button--ghost:hover,
.button--ghost:focus-visible { color: var(--ink); background: var(--paper); box-shadow: 5px 5px 0 var(--aqua); }
.button--dark { color: var(--paper); background: var(--ink); border-color: var(--ink); }
.button--dark:hover,
.button--dark:focus-visible { box-shadow: 5px 5px 0 var(--orange); }
a[data-direct-action] {
  position: relative;
  z-index: 2;
  pointer-events: auto;
  touch-action: manipulation;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: max(47rem, 100svh);
  padding: 9rem var(--pad) 4.5rem;
  display: flex;
  align-items: center;
  color: var(--ink);
  background:
    radial-gradient(circle at 2% 20%, rgba(118, 218, 211, .44), transparent 18rem),
    radial-gradient(circle at 38% 96%, rgba(255, 132, 73, .24), transparent 22rem),
    var(--cream);
  isolation: isolate;
  overflow: hidden;
}
.hero-image,
.hero-shade {
  position: absolute;
  top: 7.8rem;
  right: 0;
  bottom: 2rem;
  left: 50%;
}
.hero-image {
  z-index: -3;
  background: url("fajitas-clean.webp") center center / cover no-repeat;
  border: 3px solid var(--ink);
  border-right: 0;
  box-shadow: -14px 14px 0 var(--aqua);
  clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%, 0 8%);
  transform: scale(1.015);
  animation: heroSettle 1.4s cubic-bezier(.2, .7, .2, 1) both;
}
.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(16, 37, 29, .34) 0%, transparent 24%),
    linear-gradient(0deg, rgba(16, 37, 29, .38) 0%, transparent 28%);
  clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%, 0 8%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .12;
  background-image: radial-gradient(rgba(16, 37, 29, .8) .6px, transparent .7px);
  background-size: 6px 6px;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; width: min(39rem, 46%); }
.eyebrow,
.kicker {
  margin: 0 0 1.25rem;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: .7rem; color: var(--orange-dark); }
.eyebrow span { width: 2.4rem; height: 2px; background: currentColor; }
.hero .hero-display,
.section h2,
.margarita-feature h2,
.playground h2,
.story h2,
.catering h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: .82;
  text-transform: uppercase;
}
.hero .hero-display { font-size: clamp(5.4rem, 8.4vw, 8.7rem); }
.hero .hero-display span,
.hero .hero-display em,
.hero .hero-display strong { display: block; font-weight: 400; }
.hero .hero-display em { color: var(--orange-dark); font-style: normal; }
.hero .hero-display strong { color: #329ba5; text-shadow: 3px 3px 0 var(--ink); }
.hero-copy {
  width: min(39rem, 92%);
  margin: 1.8rem 0 0;
  font-family: var(--slab);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.42;
}
.hero-actions { margin-top: 2.1rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-proof {
  margin: 2.5rem 0 0;
  padding: 1.2rem 0 0;
  display: flex;
  gap: clamp(1.3rem, 3vw, 3.4rem);
  list-style: none;
  border-top: 2px solid rgba(16, 37, 29, .28);
}
.hero-proof li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.3;
  text-transform: uppercase;
}
.hero-proof strong { color: var(--orange-dark); font-family: var(--display); font-size: 1.75rem; font-weight: 400; }
.scroll-cue {
  position: absolute;
  right: var(--pad);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
  padding: .35rem .35rem .35rem .9rem;
  color: var(--paper);
  background: var(--ink);
}
.scroll-cue span:last-child {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
}

.ticker {
  padding: .9rem 0 .78rem;
  color: var(--ink);
  background: var(--aqua);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
}
.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-family: var(--display);
  font-size: 1.7rem;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
  animation: ticker 25s linear infinite;
}
.ticker-track i { color: var(--orange-dark); font-size: 1rem; }

.flavor-reel {
  padding: clamp(1rem, 2.2vw, 2rem) var(--pad);
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: clamp(.75rem, 1.4vw, 1.4rem);
  background: var(--ink);
}
.flavor-shot {
  min-height: clamp(17rem, 29vw, 31rem);
  margin: 0;
  position: relative;
  border: 2px solid var(--paper);
  overflow: hidden;
}
.flavor-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2, .7, .2, 1); }
.flavor-shot:nth-child(2) img { object-position: 46% center; }
.flavor-shot:hover img { transform: scale(1.045); }
.flavor-shot::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(0deg, rgba(8, 20, 15, .9), transparent);
  pointer-events: none;
}
.flavor-shot figcaption {
  position: absolute;
  z-index: 2;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  color: var(--paper);
}
.flavor-shot figcaption span { display: block; color: var(--lime); font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.flavor-shot figcaption strong { display: block; margin-top: .25rem; font-family: var(--display); font-size: clamp(1.9rem, 3vw, 3.2rem); font-weight: 400; line-height: .95; text-transform: uppercase; }

.section { padding: clamp(5.5rem, 10vw, 9rem) var(--pad); }
.section-heading { max-width: 66rem; }
.section-heading h2,
.menu-intro h2,
.locations-heading h2 { font-size: clamp(4.4rem, 9vw, 8.6rem); }
.section-heading h2 span,
.menu-intro h2 span,
.locations-heading h2 span { color: var(--orange-dark); }
.section-heading > p:last-child,
.menu-intro > p,
.locations-heading > p:last-child {
  width: min(38rem, 100%);
  margin: 1.6rem 0 0;
  font-family: var(--slab);
  font-size: 1.25rem;
  line-height: 1.45;
}

.experience {
  background:
    linear-gradient(135deg, transparent 0 96%, rgba(255, 132, 73, .24) 96% 100%),
    var(--paper);
}
.experience-cards {
  margin-top: clamp(3rem, 7vw, 6.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--ink);
}
.experience-card {
  min-height: 32rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 2px solid var(--ink);
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  transition: transform .25s ease;
}
.experience-card:last-child { border-right: 0; }
.experience-card:hover { transform: translateY(-.5rem); }
.experience-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2, .7, .2, 1);
}
.experience-card--margarita > img { object-position: 45% center; }
.experience-card:hover > img { transform: scale(1.045); }
.card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 20, 15, .25), rgba(7, 20, 15, .93) 78%);
}
.experience-card > :not(img):not(.card-scrim) { position: relative; z-index: 2; }
.card-number {
  margin: 0;
  font-family: var(--display);
  font-size: 5rem;
  line-height: 1;
  color: var(--lime);
  opacity: .85;
}
.card-tag { margin: 0 0 .75rem; font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.experience-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 400;
  line-height: .92;
  text-transform: uppercase;
}
.experience-card div > p:last-child { max-width: 26rem; margin: 1.2rem 0 0; font-size: .92rem; line-height: 1.55; }
.experience-card > a { width: fit-content; margin-top: 2rem; font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-decoration-thickness: 2px; text-underline-offset: .35rem; text-transform: uppercase; }

.margarita-feature {
  min-height: 42rem;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(24rem, .75fr);
  color: var(--ink);
  background: var(--orange);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.margarita-photo { position: relative; min-height: 38rem; overflow: hidden; }
.margarita-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 70%, var(--orange) 100%);
  pointer-events: none;
}
.margarita-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.95) contrast(1.03); }
.margarita-photo .bartender-photo { position: absolute; inset: 0; object-position: 50% 55%; filter: none; }
.photo-stamp {
  position: absolute;
  z-index: 2;
  right: 1.3rem;
  bottom: 1.4rem;
  width: 8rem;
  height: 8rem;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}
.margarita-copy { padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 5vw, 5rem); align-self: center; }
.margarita-copy .kicker { color: var(--ink); }
.margarita-copy h2 { font-size: clamp(4.4rem, 7.2vw, 7.4rem); }
.margarita-copy h2 span { color: var(--paper); text-shadow: 3px 3px 0 var(--ink); }
.margarita-copy > p:not(.kicker) { max-width: 31rem; margin: 1.6rem 0 2rem; font-family: var(--slab); font-size: 1.2rem; }
.text-link {
  display: inline-flex;
  gap: .8rem;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-decoration-thickness: 2px;
  text-underline-offset: .45rem;
  text-transform: uppercase;
}
.text-link:hover,
.text-link:focus-visible { color: var(--yellow); }
.text-link--dark:hover,
.text-link--dark:focus-visible { color: var(--orange-dark); }

.menu-section {
  display: grid;
  grid-template-columns: minmax(20rem, .85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
  background:
    radial-gradient(circle at 7% 90%, rgba(191, 223, 131, .3), transparent 18rem),
    var(--cream);
}
.menu-intro { position: sticky; top: 7rem; }
.menu-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; }
.menu-gallery {
  min-height: 35rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.15fr .85fr;
  gap: .8rem;
}
.menu-gallery figure { min-height: 15rem; margin: 0; position: relative; border: 2px solid var(--ink); overflow: hidden; }
.menu-gallery__hero { grid-row: 1 / 3; }
.menu-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.menu-gallery figure:hover img { transform: scale(1.04); }
.menu-gallery figcaption {
  position: absolute;
  right: .8rem;
  bottom: .8rem;
  padding: .45rem .65rem;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.dish-list { grid-column: 2; margin-top: -2rem; border-top: 2px solid var(--ink); }
.dish-list a {
  display: grid;
  grid-template-columns: 2.5rem minmax(10rem, 1fr) minmax(11rem, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem .25rem;
  border-bottom: 2px solid var(--ink);
  text-decoration: none;
  transition: padding .2s ease, color .2s ease, background .2s ease;
}
.dish-list a:hover,
.dish-list a:focus-visible { padding-left: 1rem; padding-right: 1rem; color: var(--paper); background: var(--ink); }
.dish-list span,
.dish-list small { font-size: .75rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.dish-list strong { font-family: var(--display); font-size: 1.8rem; font-weight: 400; line-height: 1; text-transform: uppercase; }
.dish-list b { font-size: 1.1rem; }

.playground {
  position: relative;
  padding: clamp(2rem, 4vw, 4rem) var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(21rem, .85fr);
  grid-template-rows: auto auto;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  color: var(--ink);
  background: var(--aqua);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
}
.playground::before {
  content: "";
  position: absolute;
  top: -6rem;
  right: 18%;
  width: 18rem;
  height: 18rem;
  border: 4rem solid rgba(255, 250, 240, .25);
  border-radius: 50%;
}
.playground-facts {
  min-height: clamp(26rem, 48vw, 40rem);
  grid-column: 1 / -1;
  position: relative;
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--paper);
  background: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 12px 12px 0 var(--yellow);
  overflow: hidden;
}
.playground-facts::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 34, 31, .92) 0%, rgba(7, 34, 31, .42) 40%, rgba(7, 34, 31, .05) 72%);
}
.playground-facts__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.playground-facts__eyebrow {
  position: relative;
  z-index: 2;
  margin: 0 0 .75rem;
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.playground-facts strong {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 400;
  line-height: .84;
  text-transform: uppercase;
}
.playground-facts > span { position: relative; z-index: 2; max-width: 30rem; margin-top: 1.4rem; font-family: var(--slab); font-size: 1.15rem; line-height: 1.4; }
.playground-main { align-self: end; }
.playground h2 { position: relative; font-size: clamp(4.5rem, 7vw, 7.5rem); }
.playground h2 span { color: var(--paper); text-shadow: 4px 4px 0 var(--ink); }
.playground-note {
  position: relative;
  align-self: start;
  padding: 2rem;
  background: var(--yellow);
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  transform: rotate(1.5deg);
}
.handwritten { margin: 0; font-family: var(--slab); font-size: 2rem; font-style: italic; font-weight: 700; line-height: 1; }
.playground-note > p:nth-child(2) { margin: 1.2rem 0 1.5rem; font-size: .94rem; }
.playground-note small { display: block; margin-top: 1rem; font-size: .75rem; line-height: 1.4; }
.confetti i { position: absolute; width: .8rem; height: 4rem; background: var(--orange); transform: rotate(28deg); }
.confetti i:nth-child(1) { left: 3%; top: 13%; }
.confetti i:nth-child(2) { left: 48%; bottom: 7%; height: 2.5rem; background: var(--lime); transform: rotate(-35deg); }
.confetti i:nth-child(3) { right: 4%; top: 8%; background: var(--paper); transform: rotate(65deg); }
.confetti i:nth-child(4) { left: 27%; top: 5%; width: 2.5rem; height: 2.5rem; border: .7rem solid var(--yellow); border-radius: 50%; background: transparent; }
.confetti i:nth-child(5) { left: 59%; top: 18%; width: 1.4rem; height: 1.4rem; background: var(--orange-dark); transform: rotate(45deg); }
.confetti i:nth-child(6) { right: 31%; bottom: 5%; width: 2rem; height: 2rem; background: var(--paper); transform: rotate(15deg); }

.order-feature {
  min-height: 42rem;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(22rem, .75fr);
  color: var(--paper);
  background: var(--ink);
  border-bottom: 3px solid var(--ink);
}
.order-feature__photo { min-height: 38rem; overflow: hidden; }
.order-feature__photo img { width: 100%; height: 100%; object-fit: cover; }
.order-feature__copy { padding: clamp(3.5rem, 7vw, 7rem) clamp(2rem, 5vw, 5rem); align-self: center; }
.order-feature__copy h2 { margin: 0; font-family: var(--display); font-size: clamp(4.4rem, 7vw, 7.2rem); font-weight: 400; letter-spacing: -.025em; line-height: .83; text-transform: uppercase; }
.order-feature__copy h2 span { color: var(--orange); }
.order-feature__copy > p:not(.kicker) { max-width: 29rem; margin: 1.6rem 0 2rem; font-family: var(--slab); font-size: 1.2rem; }

.locations { background: var(--cream); }
.locations-heading { margin-bottom: clamp(3rem, 6vw, 6rem); }
.location-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 2px solid var(--ink); }
.location-card {
  min-height: 27rem;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  border-right: 2px solid var(--ink);
  background: var(--paper);
  position: relative;
}
.location-card:last-child { border-right: 0; }
.location-card--feature { color: var(--paper); background: var(--ink); }
.location-topline { display: flex; justify-content: space-between; padding-bottom: .8rem; border-bottom: 1px solid currentColor; font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.location-card h3 { margin: 2.5rem 0 1rem; font-family: var(--display); font-size: clamp(2.8rem, 4vw, 4.2rem); font-weight: 400; line-height: .9; text-transform: uppercase; }
.location-card address { font-family: var(--slab); font-size: 1.04rem; line-height: 1.4; }
.location-card > p { margin: 1.5rem 0; font-size: .82rem; }
.location-card > p strong { display: inline-block; min-width: 5rem; }
.location-links { margin-top: auto; display: flex; justify-content: space-between; gap: .8rem; position: relative; z-index: 4; }
.location-links--wrap { flex-wrap: wrap; justify-content: flex-start; }
.location-links--wrap a:last-child { margin-left: auto; }
.location-links a { position: relative; z-index: 1; pointer-events: auto; touch-action: manipulation; font-size: .75rem; font-weight: 800; letter-spacing: .06em; text-decoration-thickness: 2px; text-underline-offset: .35rem; text-transform: uppercase; }
.original-stamp {
  position: absolute;
  top: 4.3rem;
  right: 1.2rem;
  width: 5.2rem;
  height: 5.2rem;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: .9;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(9deg);
}

.story {
  min-height: 40rem;
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(16rem, .8fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 25%, rgba(118, 218, 211, .56), transparent 25%),
    radial-gradient(circle at 15% 85%, rgba(255, 132, 73, .34), transparent 27%),
    var(--lime);
  border-bottom: 3px solid var(--ink);
}
.story h2 { font-size: clamp(4.5rem, 8vw, 8rem); }
.story h2 span { color: var(--orange-dark); }
.story-copy > p:not(.kicker) { max-width: 46rem; margin: 1.8rem 0 2rem; font-family: var(--slab); font-size: 1.2rem; }
.story-visual {
  position: relative;
  min-height: 32rem;
  overflow: hidden;
  border: 3px solid var(--ink);
  box-shadow: 12px 12px 0 var(--orange-dark);
  transform: rotate(1.5deg);
}
.story-visual img { width: 100%; height: 100%; min-height: 32rem; object-fit: cover; object-position: 50% 44%; }
.story-year-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: .7rem .9rem;
  color: var(--paper);
  background: var(--ink);
  border: 2px solid var(--paper);
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.catering {
  padding: clamp(5rem, 10vw, 8rem) var(--pad);
  text-align: center;
  color: var(--ink);
  background: var(--orange);
  border-bottom: 3px solid var(--ink);
}
.catering h2 { font-size: clamp(5rem, 10vw, 9.5rem); }
.catering h2 span { color: var(--paper); text-shadow: 4px 4px 0 var(--ink); }
.catering > p:not(.kicker) { max-width: 39rem; margin: 1.8rem auto 2.2rem; font-family: var(--slab); font-size: 1.25rem; }
.catering > div { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 1.7rem; }

.site-footer { padding: 4rem var(--pad) 1.3rem; color: var(--paper); background: #0b1914; }
.footer-brand { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255, 255, 255, .18); }
.footer-brand img { width: 11rem; padding: .5rem; background: var(--paper); }
.footer-brand p { margin: 0; font-family: var(--slab); font-size: 1.15rem; text-align: right; }
.footer-links { padding: 3rem 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-links > div { display: flex; flex-direction: column; gap: .45rem; }
.footer-links p { margin: 0 0 .7rem; color: var(--lime); font-size: .75rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.footer-links a { width: fit-content; font-size: .9rem; text-decoration: none; }
.footer-links a:hover,
.footer-links a:focus-visible { color: var(--yellow); text-decoration: underline; text-underline-offset: .3rem; }
.footer-bottom { padding-top: 1.2rem; display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255, 255, 255, .18); font-size: .75rem; letter-spacing: .04em; text-transform: uppercase; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 1.5rem; }
.mobile-bar { display: none; }

/* Menu and location pages */
.subpage-body { background: var(--paper); }
.subpage-main { padding-top: 5.5rem; }
.subpage-hero {
  min-height: 35rem;
  padding: clamp(5rem, 9vw, 8rem) var(--pad) clamp(4rem, 8vw, 7rem);
  display: flex;
  align-items: flex-end;
  position: relative;
  color: var(--paper);
  background: var(--ink);
  border-bottom: 3px solid var(--ink);
  isolation: isolate;
  overflow: hidden;
}
.subpage-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: var(--subpage-image, url("street-tacos-clean.webp")) center / cover no-repeat;
  pointer-events: none;
}
.subpage-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 24, 18, .94) 0%, rgba(8, 24, 18, .66) 48%, rgba(8, 24, 18, .22) 100%);
  pointer-events: none;
}
.subpage-hero__content { width: min(54rem, 100%); }
.subpage-hero .kicker { color: var(--lime); }
.subpage-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5rem, 10vw, 9.5rem);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: .84;
  text-transform: uppercase;
}
.subpage-hero h1 span { color: var(--orange); }
.subpage-hero__content > p:not(.kicker) { max-width: 43rem; margin: 1.5rem 0 0; font-family: var(--slab); font-size: clamp(1.1rem, 2vw, 1.35rem); }
.subpage-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.menu-page { padding: clamp(4rem, 8vw, 7rem) var(--pad); background: var(--cream); }
.menu-jump {
  position: sticky;
  z-index: 10;
  top: 4.6rem;
  margin: 0 calc(var(--pad) * -1) clamp(3rem, 6vw, 5rem);
  padding: .75rem var(--pad);
  display: flex;
  gap: .65rem;
  background: rgba(255, 250, 240, .96);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  overflow-x: auto;
  scrollbar-width: thin;
  backdrop-filter: blur(10px);
}
.menu-jump a {
  flex: 0 0 auto;
  padding: .55rem .8rem;
  color: var(--ink);
  background: var(--aqua);
  border: 2px solid var(--ink);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}
.menu-jump--directory {
  display: block;
  padding-top: .65rem;
  padding-bottom: .7rem;
  overflow: visible;
}
.menu-jump__group {
  display: flex;
  align-items: center;
  gap: .65rem;
  overflow-x: auto;
  padding: .2rem 0 .45rem;
  scrollbar-width: thin;
}
.menu-jump__group + .menu-jump__group { padding-top: .45rem; border-top: 1px solid rgba(255, 255, 255, .2); }
.menu-jump__group strong {
  position: sticky;
  left: 0;
  z-index: 1;
  min-width: 3.7rem;
  padding: .55rem .65rem;
  color: var(--paper);
  background: var(--ink);
  border: 2px solid var(--lime);
  border-radius: .25rem;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
.menu-jump__group--bar strong { border-color: var(--orange); }
.menu-jump__group--bar a { background: linear-gradient(180deg, #ffb129, var(--orange)); }
.menu-page__intro { max-width: 52rem; margin-bottom: 3rem; }
.menu-page__intro h2 { margin: 0; font-family: var(--display); font-size: clamp(4rem, 8vw, 7rem); font-weight: 400; line-height: .9; text-transform: uppercase; }
.menu-page__intro p { font-family: var(--slab); font-size: 1.15rem; }
.menu-section-heading {
  scroll-margin-top: 12rem;
  margin: 0 0 2rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--paper);
  background: linear-gradient(145deg, #0b5365, var(--ink));
  border: 3px solid var(--charcoal);
  border-radius: .5rem;
  box-shadow: 0 9px 0 var(--lime), 0 18px 24px rgba(6, 31, 39, .18);
}
.menu-section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.8rem, 8vw, 7rem);
  font-weight: 400;
  line-height: .85;
  text-transform: uppercase;
}
.menu-section-heading > p:last-child { max-width: 45rem; margin: .9rem 0 0; font-family: var(--slab); font-size: 1.05rem; }
.menu-page__section { margin-top: clamp(5rem, 10vw, 9rem); }
.menu-page__section--bar .menu-section-heading {
  background: linear-gradient(145deg, #f05a25, var(--orange-dark));
  box-shadow: 0 9px 0 var(--yellow), 0 18px 24px rgba(6, 31, 39, .2);
}
.menu-page__section--bar .menu-section-heading .kicker { color: var(--ink); background: var(--yellow); }
.menu-happy-hour {
  margin: 0 0 2.5rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem 2rem;
  align-items: center;
  color: var(--paper);
  background: var(--ink);
  border: 3px solid var(--charcoal);
  border-radius: .4rem;
  box-shadow: 0 7px 0 var(--orange);
}
.menu-happy-hour div { display: flex; flex-direction: column; gap: .2rem; }
.menu-happy-hour span { color: var(--yellow); font-family: var(--display); font-size: 2.25rem; line-height: 1; text-transform: uppercase; }
.menu-happy-hour strong { font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
.menu-happy-hour p { margin: 0; font-family: var(--slab); line-height: 1.5; }
.menu-categories { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem, 2.5vw, 2.5rem); align-items: start; }
.menu-category { scroll-margin-top: 9rem; background: var(--paper); border: 2px solid var(--ink); box-shadow: 8px 8px 0 var(--aqua); }
.menu-category:nth-child(3n + 2) { box-shadow-color: var(--orange); }
.menu-category:nth-child(3n) { box-shadow-color: var(--lime); }
.menu-category__head { padding: 1.2rem 1.3rem; color: var(--paper); background: var(--ink); }
.menu-category__head h2 { margin: 0; font-family: var(--display); font-size: clamp(2.6rem, 4vw, 4rem); font-weight: 400; line-height: 1; text-transform: uppercase; }
.menu-category__head p { margin: .45rem 0 0; color: var(--lime); font-size: .8rem; font-weight: 700; }
.menu-items { margin: 0; padding: 0; list-style: none; }
.menu-item { padding: 1.15rem 1.3rem; border-bottom: 1px solid var(--line); }
.menu-item:last-child { border-bottom: 0; }
.menu-item__line { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.menu-item strong { font-family: var(--slab); font-size: 1.05rem; line-height: 1.25; }
.menu-item b { flex: 0 0 auto; color: var(--orange-dark); font-family: var(--display); font-size: 1.35rem; font-weight: 400; }
.menu-item p { margin: .35rem 0 0; color: rgba(16, 37, 29, .78); font-size: .88rem; line-height: 1.5; }
.menu-categories--bar .menu-category__head { background: linear-gradient(145deg, #bf3d18, var(--orange-dark)); box-shadow: inset 0 -5px 0 rgba(255, 194, 26, .9); }
.menu-categories--bar .menu-category__head p { color: var(--yellow); }
.menu-disclaimer { margin-top: 3.5rem; padding: 1.5rem; background: var(--yellow); border: 2px solid var(--ink); font-size: .88rem; }
.menu-downloads { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.location-page-hero { --subpage-image: url("fajitas-clean.webp"); }
.location-page-hero--mont-belvieu { --subpage-image: url("mont-belvieu-original-wide.webp"); }
.location-hero__layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(22rem, .72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.location-page-hero .subpage-hero__content { width: auto; }
.location-panel--hero { align-self: center; position: relative; z-index: 3; pointer-events: auto; }
.location-overview {
  padding: clamp(4rem, 8vw, 7rem) var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(21rem, .8fr);
  gap: clamp(2rem, 6vw, 6rem);
  background: var(--cream);
}
.location-copy h2 { margin: 0; font-family: var(--display); font-size: clamp(4rem, 7vw, 7rem); font-weight: 400; line-height: .88; text-transform: uppercase; }
.location-copy h2 span { color: var(--orange-dark); }
.location-copy > p { max-width: 48rem; font-family: var(--slab); font-size: 1.15rem; }
.location-highlights { margin: 2rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; list-style: none; }
.location-highlights li { padding: 1rem; background: var(--paper); border: 2px solid var(--ink); font-size: .82rem; font-weight: 800; text-align: center; text-transform: uppercase; }
.location-panel { padding: 1.6rem; color: var(--paper); background: var(--ink); border: 3px solid var(--ink); box-shadow: 10px 10px 0 var(--orange); }
.open-status { margin: 0 0 1.2rem; display: flex; align-items: center; gap: .65rem; color: var(--yellow); font-size: .82rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.open-status::before { content: ""; width: .7rem; height: .7rem; background: currentColor; border-radius: 50%; }
.open-status.is-open { color: var(--lime); }
.location-panel h2 { margin: 0; font-family: var(--display); font-size: 3.2rem; font-weight: 400; line-height: 1; text-transform: uppercase; }
.location-panel address { margin: 1rem 0; font-family: var(--slab); font-size: 1.1rem; }
.location-panel__phone { font-family: var(--display); font-size: 2rem; letter-spacing: .02em; }
.hours-list { margin: 1.5rem 0; padding: 1rem 0; border-top: 1px solid rgba(255,255,255,.25); border-bottom: 1px solid rgba(255,255,255,.25); }
.hours-list p { margin: .3rem 0; display: flex; justify-content: space-between; gap: 1rem; font-size: .9rem; }
.location-panel__actions { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.location-panel__actions .button { padding-inline: .75rem; }
.location-panel__actions--essential { position: relative; z-index: 5; }
.location-panel__actions--essential .button { position: relative; z-index: 1; pointer-events: auto; touch-action: manipulation; }
.location-panel__actions--essential .button:first-child { grid-column: 1 / -1; }
.location-note { margin: 1rem 0 0; color: rgba(255,255,255,.75); font-size: .78rem; }
.nearby-section { padding: clamp(4rem, 8vw, 7rem) var(--pad); background: var(--aqua); border-top: 3px solid var(--ink); }
.nearby-section h2 { margin: 0 0 2rem; font-family: var(--display); font-size: clamp(4rem, 8vw, 7rem); font-weight: 400; line-height: .9; text-transform: uppercase; }
.nearby-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 2px solid var(--ink); }
.nearby-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.nearby-grid article { min-height: 13rem; padding: 1.3rem; background: var(--paper); border-right: 2px solid var(--ink); }
.nearby-grid article:last-child { border-right: 0; }
.nearby-grid h3 { margin: 0; font-family: var(--display); font-size: 2rem; font-weight: 400; text-transform: uppercase; }
.nearby-grid p { margin: .6rem 0 1rem; font-size: .88rem; }
.nearby-grid a { font-size: .78rem; font-weight: 800; text-transform: uppercase; }

.content-page {
  padding: clamp(4rem, 8vw, 7rem) var(--pad);
  background: var(--cream);
}
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, .85fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.content-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 400;
  line-height: .88;
  text-transform: uppercase;
}
.content-copy h2 span { color: var(--orange-dark); }
.content-copy > p { max-width: 48rem; font-family: var(--slab); font-size: 1.16rem; line-height: 1.55; }
.content-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.content-panel {
  padding: 1.7rem;
  color: var(--paper);
  background: var(--ink);
  border: 3px solid var(--charcoal);
  border-radius: .5rem;
  box-shadow: 12px 12px 0 var(--orange), 22px 22px 28px rgba(6, 31, 39, .24);
}
.content-panel h2,
.content-panel h3 { margin: 0; font-family: var(--display); font-size: 2.9rem; font-weight: 400; line-height: 1; text-transform: uppercase; }
.content-panel > p { font-size: .95rem; line-height: 1.55; }
.content-panel__links { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.content-panel__links a { font-weight: 800; text-underline-offset: .3rem; }
.content-photo {
  min-height: 32rem;
  position: relative;
  overflow: hidden;
  border: 4px solid var(--charcoal);
  border-radius: .5rem;
  box-shadow: 12px 12px 0 var(--aqua), 22px 22px 28px rgba(6, 31, 39, .24);
}
.content-photo img { width: 100%; height: 100%; min-height: 32rem; object-fit: cover; }
.content-photo span { position: absolute; right: 1rem; bottom: 1rem; padding: .65rem .85rem; color: var(--ink); background: var(--yellow); border: 2px solid var(--charcoal); box-shadow: 0 5px 0 var(--charcoal); font-family: var(--display); font-size: 1.5rem; text-transform: uppercase; }
.contact-section { padding: clamp(4rem, 8vw, 7rem) var(--pad); background: var(--aqua); border-top: 3px solid var(--charcoal); }
.contact-section > h2 { margin: 0 0 2rem; color: var(--paper); font-family: var(--display); font-size: clamp(4rem, 8vw, 7rem); font-weight: 400; line-height: .9; text-transform: uppercase; text-shadow: 0 3px 0 var(--orange-dark), 0 7px 0 var(--charcoal); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.contact-card { padding: 1.5rem; display: flex; flex-direction: column; background: var(--paper); border: 3px solid var(--charcoal); border-radius: .5rem; box-shadow: 0 8px 0 var(--charcoal), 0 16px 22px rgba(6, 31, 39, .22); }
.contact-card h3 { margin: 0; font-family: var(--display); font-size: 2.7rem; font-weight: 400; text-transform: uppercase; }
.contact-card address { margin: .8rem 0; font-family: var(--slab); font-size: 1rem; line-height: 1.45; }
.contact-card > p { margin: .5rem 0 1rem; font-size: .84rem; line-height: 1.5; }
.contact-card > a { width: fit-content; margin-top: auto; font-weight: 800; text-underline-offset: .3rem; }
.contact-card__actions { margin-top: auto; display: flex; flex-direction: column; align-items: flex-start; gap: .55rem; }
.contact-card__actions a { font-weight: 800; text-underline-offset: .3rem; }

.js .reveal.reveal-ready { opacity: 0; transform: translateY(2rem); transition: opacity .65s ease, transform .65s cubic-bezier(.2, .7, .2, 1); }
.js .reveal.reveal-ready.is-visible { opacity: 1; transform: translateY(0); }

@keyframes heroSettle {
  from { opacity: .5; transform: scale(1.07); }
  to { opacity: 1; transform: scale(1.015); }
}
@keyframes ticker { to { transform: translateX(-50%); } }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: auto 1fr auto; gap: 1rem; }
  .main-nav { gap: 1.2rem; }
  .main-nav a:nth-child(1),
  .main-nav a:nth-child(3) { display: none; }
  .experience-cards { grid-template-columns: 1fr 1fr; }
  .experience-card:last-child { grid-column: 1 / -1; min-height: 22rem; border-top: 2px solid var(--ink); border-right: 0; }
  .experience-card:nth-child(2) { border-right: 0; }
  .margarita-feature { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
  .playground { grid-template-columns: minmax(0, 1.05fr) minmax(19rem, .95fr); gap: 2rem; }
  .dish-list a { grid-template-columns: 2rem 1fr auto; }
  .dish-list small { display: none; }
  .location-grid { grid-template-columns: 1fr; }
  .location-card { min-height: 22rem; border-right: 0; border-bottom: 2px solid var(--ink); }
  .location-card:last-child { border-bottom: 0; }
  .menu-categories { grid-template-columns: 1fr; }
  .location-overview { grid-template-columns: minmax(0, 1fr) minmax(19rem, .72fr); gap: 2rem; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 4.4rem; }
  body { padding-bottom: 4rem; }
  .site-header {
    min-height: 4.5rem;
    padding: .55rem 1rem;
    grid-template-columns: 1fr auto;
    color: var(--ink);
    background: rgba(255, 250, 240, .97);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .site-header.scrolled { min-height: 4.5rem; }
  .brand,
  .site-header.scrolled .brand { width: 6.7rem; box-shadow: 3px 3px 0 var(--orange); }
  .header-order { display: none; }
  .menu-toggle {
    width: 3rem;
    height: 3rem;
    padding: .7rem;
    display: grid;
    align-content: center;
    gap: .35rem;
    color: var(--ink);
    background: transparent;
    border: 1px solid rgba(16, 37, 29, .45);
  }
  .menu-toggle span:not(.sr-only) { width: 100%; height: 2px; display: block; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    inset: 4.5rem 0 0;
    width: 100vw;
    min-height: calc(100vh - 4.5rem);
    min-height: calc(100dvh - 4.5rem);
    padding: 2.5rem 1.5rem 7rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    color: var(--paper);
    background: linear-gradient(160deg, #0b5365 0%, var(--ink) 52%, var(--charcoal) 100%);
    border-top: 4px solid var(--lime);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform .3s cubic-bezier(.2, .7, .2, 1), visibility 0s linear .3s;
  }
  .main-nav.open { transform: translateX(0); visibility: visible; pointer-events: auto; transition-delay: 0s; }
  .main-nav a,
  .main-nav a:nth-child(1),
  .main-nav a:nth-child(3) {
    margin: 0 0 .8rem;
    padding: .9rem 1.1rem;
    display: block;
    color: var(--paper);
    background: rgba(7, 51, 62, .96);
    border: 2px solid rgba(186, 214, 61, .72);
    border-radius: .35rem;
    box-shadow: 0 5px 0 var(--charcoal);
    font-family: var(--display);
    font-size: 2.3rem;
    font-weight: 400;
    letter-spacing: .02em;
    line-height: 1;
  }
  .main-nav a:hover,
  .main-nav a:focus-visible { color: var(--ink); background: var(--lime); border-color: var(--yellow); }
  .main-nav a[aria-current="page"] { color: var(--ink); background: linear-gradient(180deg, #d6e96c, var(--lime)); border-color: var(--yellow); }
  .main-nav a::after { display: none; }

  .hero { min-height: auto; padding: 25.5rem 1.2rem 4.5rem; align-items: flex-end; }
  .hero-image,
  .hero-shade { top: 4.5rem; right: 0; bottom: auto; left: 0; height: 19.5rem; clip-path: none; }
  .hero-image { background-position: 61% center; border: 0; border-bottom: 3px solid var(--ink); box-shadow: 0 8px 0 var(--aqua); }
  .hero-shade { background: linear-gradient(0deg, rgba(16, 37, 29, .35) 0%, transparent 42%); }
  .hero-content { width: 100%; }
  .eyebrow { font-size: .75rem; }
  .hero .hero-display { font-size: clamp(5rem, 24vw, 7.2rem); }
  .hero-copy { width: 100%; margin-top: 1.3rem; font-size: 1.03rem; }
  .hero-actions { margin-top: 1.5rem; }
  .hero-actions .button { flex: 1 1 12rem; }
  .hero-proof { margin-top: 1.7rem; gap: .8rem; }
  .hero-proof li { flex: 1; display: block; font-size: .75rem; }
  .hero-proof strong { display: block; font-size: 1.5rem; }
  .scroll-cue { display: none; }
  .ticker-track { font-size: 1.4rem; }
  .flavor-reel { padding: .8rem; grid-template-columns: 1.25fr .75fr; gap: .65rem; }
  .flavor-shot { min-height: 18rem; }
  .flavor-shot:first-child { grid-column: 1 / -1; min-height: 20rem; }
  .flavor-shot figcaption { right: .8rem; bottom: .8rem; left: .8rem; }
  .flavor-shot figcaption strong { font-size: 2rem; }
  .section { padding: 5rem 1.2rem; }
  .section-heading h2,
  .menu-intro h2,
  .locations-heading h2 { font-size: clamp(4.2rem, 21vw, 6.4rem); }
  .section-heading > p:last-child,
  .menu-intro > p { font-size: 1.05rem; }
  .experience-cards { grid-template-columns: 1fr; }
  .experience-card,
  .experience-card:last-child { grid-column: auto; min-height: 27rem; border-right: 0; border-bottom: 2px solid var(--ink); border-top: 0; }
  .experience-card:last-child { border-bottom: 0; }
  .margarita-feature { grid-template-columns: 1fr; }
  .margarita-photo { min-height: 25rem; }
  .margarita-photo::after { background: linear-gradient(0deg, var(--orange) 0%, transparent 24%); }
  .photo-stamp { right: .8rem; bottom: .8rem; width: 6.5rem; height: 6.5rem; font-size: 1.1rem; }
  .margarita-copy { padding: 1.5rem 1.2rem 5rem; }
  .margarita-copy h2 { font-size: clamp(4.7rem, 22vw, 7rem); }
  .menu-section { grid-template-columns: 1fr; gap: 3rem; }
  .menu-intro { position: static; }
  .menu-gallery { min-height: auto; grid-template-rows: 19rem 12rem; gap: .55rem; }
  .menu-gallery figure { min-height: 0; }
  .dish-list { grid-column: 1; margin-top: 0; }
  .dish-list strong { font-size: 1.5rem; }
  .playground { padding: 1.2rem 1.2rem 5rem; grid-template-columns: 1fr; grid-template-rows: auto; gap: 2.8rem; }
  .playground-facts { min-height: 22rem; grid-row: auto; box-shadow: 7px 7px 0 var(--yellow); }
  .playground h2 { font-size: clamp(5rem, 23vw, 7.5rem); }
  .playground-note { margin-right: .5rem; padding: 1.5rem; box-shadow: 7px 7px 0 var(--ink); }
  .order-feature { min-height: 0; grid-template-columns: 1fr; }
  .order-feature__photo { min-height: 23rem; }
  .order-feature__copy { padding: 4rem 1.2rem 5rem; }
  .order-feature__copy h2 { font-size: clamp(4.7rem, 22vw, 7rem); }
  .location-card { padding: 1.35rem; }
  .story { padding: 5rem 1.2rem; grid-template-columns: 1fr; }
  .story h2 { font-size: clamp(4.5rem, 21vw, 6.5rem); }
  .story-visual { order: -1; min-height: 19rem; box-shadow: 7px 7px 0 var(--orange-dark); }
  .story-visual img { min-height: 19rem; }
  .catering { padding: 5rem 1.2rem; }
  .catering h2 { font-size: clamp(4.6rem, 22vw, 7rem); }
  .site-footer { padding: 3.5rem 1.2rem 1.2rem; }
  .footer-brand { align-items: flex-start; flex-direction: column; }
  .footer-brand p { text-align: left; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .mobile-bar {
    position: fixed;
    z-index: 45;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4.1rem;
    display: grid;
    grid-template-columns: .85fr .95fr 1.35fr;
    color: var(--paper);
    background: var(--ink);
    border-top: 2px solid var(--paper);
  }
  .mobile-bar a { display: grid; place-items: center; border-right: 1px solid rgba(255, 255, 255, .2); font-size: .75rem; font-weight: 800; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
  .mobile-bar a:last-child { color: var(--ink); background: var(--lime); border-right: 0; }
  .subpage-main { padding-top: 4.5rem; }
  .subpage-hero { min-height: 31rem; padding: 5rem 1.2rem 3.5rem; }
  .subpage-hero::after { background: linear-gradient(0deg, rgba(8, 24, 18, .94), rgba(8, 24, 18, .38)); }
  .subpage-hero h1 { font-size: clamp(4.8rem, 22vw, 7rem); }
  .menu-page { padding: 4rem 1.2rem 5rem; }
  .menu-jump { top: 4.45rem; margin-right: -1.2rem; margin-left: -1.2rem; padding-right: 1.2rem; padding-left: 1.2rem; }
  .menu-jump--directory { max-height: 9.4rem; }
  .menu-jump__group { margin-right: -1.2rem; padding-right: 1.2rem; }
  .menu-jump__group strong { min-width: 3.2rem; padding-right: .5rem; padding-left: .5rem; }
  .menu-section-heading { scroll-margin-top: 14rem; }
  .menu-happy-hour { align-items: flex-start; flex-direction: column; }
  .menu-categories { grid-template-columns: 1fr; gap: 1.5rem; }
  .menu-category { box-shadow: 6px 6px 0 var(--aqua); }
  .location-overview { padding: 4rem 1.2rem 5rem; grid-template-columns: 1fr; }
  .location-highlights { grid-template-columns: 1fr; }
  .location-panel { box-shadow: 7px 7px 0 var(--orange); }
  .location-panel__actions { grid-template-columns: 1fr; }
  .nearby-section { padding: 4rem 1.2rem 5rem; }
  .nearby-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .content-photo { min-height: 22rem; box-shadow: 8px 8px 0 var(--aqua), 15px 16px 20px rgba(6, 31, 39, .22); }
  .content-photo img { min-height: 22rem; }
  .content-panel { box-shadow: 8px 8px 0 var(--orange), 15px 16px 20px rgba(6, 31, 39, .22); }
  .contact-grid { grid-template-columns: 1fr; }
  .nearby-grid article { border-right: 0; border-bottom: 2px solid var(--ink); }
  .nearby-grid article:last-child { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Contact and feedback */
.guest-contact-main {
  min-height: 100vh;
  padding-top: 5.5rem;
  background:
    radial-gradient(circle at 8% 18%, rgba(186, 214, 61, .28), transparent 22rem),
    radial-gradient(circle at 92% 82%, rgba(239, 72, 35, .2), transparent 24rem),
    var(--cream);
}
.guest-contact-shell {
  width: min(92rem, 100%);
  min-height: calc(100svh - 5.5rem);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 5rem) var(--pad) clamp(4rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: minmax(18rem, .72fr) minmax(34rem, 1.28fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.guest-contact-intro {
  position: sticky;
  top: 7.5rem;
}
.guest-contact-intro h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.5rem, 7vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: .83;
  text-transform: uppercase;
}
.guest-contact-intro h1 span { color: var(--orange-dark); }
.guest-contact-intro > p:not(.kicker) {
  max-width: 34rem;
  margin: 1.6rem 0 0;
  font-family: var(--slab);
  font-size: 1.12rem;
  line-height: 1.55;
}
.guest-contact-photo {
  min-height: 13rem;
  margin-top: 2rem;
  background:
    linear-gradient(90deg, rgba(6, 31, 39, .18), transparent 45%),
    url("texmex-plate.webp") center 58% / cover no-repeat;
  border: 3px solid var(--charcoal);
  border-radius: .45rem;
  box-shadow: 9px 9px 0 var(--aqua);
  clip-path: polygon(0 0, 96% 0, 100% 12%, 100% 100%, 4% 100%, 0 88%);
}
.guest-contact-help {
  margin-top: 2rem;
  padding: 1.25rem;
  color: var(--paper);
  background: var(--ink);
  border: 2px solid var(--charcoal);
  box-shadow: 7px 7px 0 var(--orange);
}
.guest-contact-help h2 {
  margin: 0;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.guest-contact-help p { margin: .6rem 0 1rem; font-size: .88rem; line-height: 1.5; }
.guest-contact-help a {
  display: block;
  width: fit-content;
  margin-top: .55rem;
  color: var(--paper);
  font-size: .82rem;
  font-weight: 800;
  text-underline-offset: .25rem;
}
.guest-contact-help a[hidden] { display: none; }
.guest-form-card {
  overflow: hidden;
  background: var(--paper);
  border: 3px solid var(--charcoal);
  border-radius: .65rem;
  box-shadow: 12px 12px 0 var(--aqua), 22px 22px 32px rgba(6, 31, 39, .18);
}
.guest-form-card form { margin: 0; }
.form-step {
  min-width: 0;
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.6rem);
  border: 0;
}
.form-step--location { border-bottom: 2px solid var(--line); }
.form-step legend,
.form-step__heading {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: .8rem;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.form-step legend > span,
.form-step__heading > span {
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 2.4rem;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 3px 3px 0 var(--orange);
  font-size: 1.55rem;
}
.form-step__note {
  margin: .8rem 0 1.4rem;
  color: rgba(7, 51, 62, .75);
  font-size: .9rem;
}
.choice-grid { display: grid; gap: .85rem; }
.choice-grid--locations { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.choice-grid--request { margin-top: 1.25rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.choice-card { position: relative; display: block; cursor: pointer; }
.choice-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.choice-card > span {
  min-height: 7rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .35rem;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: .35rem;
  box-shadow: 0 5px 0 rgba(7, 51, 62, .2);
  transition: transform .16s ease, box-shadow .16s ease, color .16s ease, background .16s ease;
}
.choice-card > span strong {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.choice-card > span small { font-size: .75rem; line-height: 1.35; }
.choice-card:hover > span { transform: translateY(-2px); box-shadow: 0 7px 0 rgba(7, 51, 62, .25); }
.choice-card input:focus-visible + span { outline: 3px solid var(--sky); outline-offset: 3px; }
.choice-card input:checked + span {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 6px 6px 0 var(--orange);
  transform: translate(-2px, -2px);
}
.choice-card input:checked + span small { color: var(--lime); }
.choice-card--request > span { min-height: 6rem; }
.form-continue { margin-top: 1.5rem; }
.form-continue:disabled { cursor: not-allowed; opacity: .55; transform: none; box-shadow: none; }
.form-submit-row button:disabled { cursor: wait; opacity: .55; transform: none; box-shadow: none; }
.js .form-step--details { display: none; }
.js .form-step--details.is-ready { display: block; animation: formReveal .28s ease both; }
.conditional-fields { margin-top: 1.5rem; }
.js .conditional-fields { display: none; }
.js .conditional-fields.is-active { display: block; }
.form-grid { display: grid; gap: 1rem; }
.form-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-field { display: flex; flex-direction: column; gap: .45rem; color: var(--ink); }
.form-field > span,
.rating-field legend { font-size: .83rem; font-weight: 800; line-height: 1.35; }
.form-field > span small { color: rgba(7, 51, 62, .65); font-weight: 500; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3.25rem;
  padding: .78rem .85rem;
  color: var(--ink);
  background: #fffdf7;
  border: 2px solid rgba(7, 51, 62, .42);
  border-radius: .3rem;
  font: inherit;
  font-size: 1rem;
  line-height: 1.35;
}
.form-field textarea { min-height: 9rem; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: 3px solid rgba(61, 142, 173, .32); border-color: var(--sky); }
.form-field--message { margin: 1.5rem 0 1rem; }
.rating-field { margin: 1.25rem 0; padding: 0; border: 0; }
.rating-field legend { margin-bottom: .55rem; }
.rating-options { display: grid; grid-template-columns: repeat(5, 1fr); gap: .55rem; }
.rating-options label { position: relative; cursor: pointer; }
.rating-options input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.rating-options span {
  min-height: 4.25rem;
  display: grid;
  place-items: center;
  align-content: center;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid rgba(7, 51, 62, .42);
  border-radius: .3rem;
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1;
}
.rating-options small { margin-top: .2rem; display: block; font-family: var(--body); font-size: .64rem; font-weight: 700; }
.rating-options input:focus-visible + span { outline: 3px solid var(--sky); outline-offset: 2px; }
.rating-options input:checked + span { color: var(--paper); background: var(--aqua); border-color: var(--ink); box-shadow: 3px 3px 0 var(--yellow); }
.form-contact-note { margin: .7rem 0 0; color: rgba(7, 51, 62, .7); font-size: .78rem; }
.form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-submit-row {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-top: 1px solid var(--line);
}
.form-submit-row > p { max-width: 24rem; margin: 0; color: rgba(7, 51, 62, .68); font-size: .75rem; line-height: 1.4; }
.form-alert {
  margin: 1.5rem 1.5rem 0;
  padding: .85rem 1rem;
  color: #721d11;
  background: #ffe4d9;
  border: 2px solid var(--orange-dark);
  font-weight: 700;
}
.form-alert[hidden] { display: none; }
.form-success { padding: clamp(2rem, 5vw, 4rem); text-align: center; }
.form-success[hidden] { display: none; }
.form-success__check {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.25rem;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 5px 5px 0 var(--orange);
  font-size: 2.2rem;
  font-weight: 800;
}
.form-success h2 { margin: 0; font-family: var(--display); font-size: 5rem; font-weight: 400; line-height: 1; text-transform: uppercase; }
.form-success > p:not(.kicker) { font-family: var(--slab); font-size: 1.08rem; }
.form-success__reference { padding: .8rem; background: var(--cream); border: 1px solid var(--line); }
.form-success__actions { margin-top: 1.5rem; display: flex; justify-content: center; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.text-button { padding: .5rem; color: var(--ink); background: none; border: 0; font: inherit; font-size: .82rem; font-weight: 800; text-decoration: underline; text-underline-offset: .25rem; cursor: pointer; }
@keyframes formReveal { from { opacity: 0; transform: translateY(.75rem); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1050px) {
  .guest-contact-shell { grid-template-columns: minmax(16rem, .62fr) minmax(30rem, 1.38fr); gap: 2.5rem; }
  .choice-grid--locations { grid-template-columns: 1fr; }
  .choice-card > span { min-height: 5rem; }
}

@media (max-width: 760px) {
  .guest-contact-main { padding-top: 4.5rem; }
  .guest-contact-shell {
    min-height: auto;
    padding: 2rem 1rem 4.5rem;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .guest-contact-intro { position: static; }
  .guest-contact-intro h1 { font-size: clamp(3.7rem, 17vw, 5.2rem); }
  .guest-contact-intro > p:not(.kicker) { margin-top: 1rem; font-size: 1rem; }
  .guest-contact-photo,
  .guest-contact-help { display: none; }
  .guest-form-card { box-shadow: 7px 7px 0 var(--aqua); }
  .form-step { padding: 1.25rem; }
  .form-step legend,
  .form-step__heading { align-items: flex-start; font-size: 2.25rem; }
  .choice-grid--request,
  .form-grid--two { grid-template-columns: 1fr; }
  .choice-card > span { min-height: 4.7rem; }
  .form-continue,
  .form-submit-row .button { width: 100%; }
  .rating-options { gap: .35rem; }
  .rating-options span { min-height: 3.9rem; font-size: 1.5rem; }
  .rating-options small { display: none; }
  .form-submit-row { align-items: stretch; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .js .form-step--details.is-ready { animation: none; }
}

/* Dimensional Iguana Joe's brand system */
body {
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255, 194, 26, .14), transparent 22rem),
    repeating-linear-gradient(135deg, rgba(7, 51, 62, .025) 0 1px, transparent 1px 7px);
}

.site-header {
  color: var(--paper);
  background: rgba(7, 51, 62, .97);
  border-bottom: 3px solid var(--charcoal);
  box-shadow: 0 5px 0 var(--lime), 0 12px 28px rgba(6, 31, 39, .3);
}
.site-header.scrolled {
  background: rgba(7, 51, 62, .985);
  box-shadow: 0 4px 0 var(--lime), 0 10px 24px rgba(6, 31, 39, .34);
}
.brand,
.site-header.scrolled .brand {
  width: 9.4rem;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  filter:
    drop-shadow(0 2px 0 rgba(239, 247, 154, .75))
    drop-shadow(0 6px 0 rgba(4, 27, 33, .95))
    drop-shadow(0 12px 12px rgba(4, 25, 31, .34));
  transform: perspective(500px) rotateX(2deg) rotateY(-3deg) rotate(-1deg);
  transform-origin: left center;
  transition: transform .24s ease, filter .24s ease, width .3s ease;
}
.brand:hover,
.brand:focus-visible {
  filter:
    drop-shadow(0 2px 0 rgba(239, 247, 154, .9))
    drop-shadow(0 8px 0 rgba(4, 27, 33, .95))
    drop-shadow(0 16px 15px rgba(4, 25, 31, .38));
  transform: perspective(500px) translateY(-2px) rotateX(-2deg) rotateY(4deg) rotate(-1deg);
}
.main-nav a::after { height: 3px; background: var(--yellow); box-shadow: 0 2px 0 var(--orange-dark); }

.button {
  border-width: 3px;
  border-color: var(--charcoal);
  border-radius: .35rem;
  box-shadow: 0 6px 0 var(--charcoal), 0 11px 18px rgba(6, 31, 39, .22);
  transform: translateY(0);
  transition: transform .16s ease, box-shadow .16s ease, color .16s ease, background .16s ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-3px); box-shadow: 0 9px 0 var(--charcoal), 0 16px 22px rgba(6, 31, 39, .26); }
.button:active { transform: translateY(4px); box-shadow: 0 2px 0 var(--charcoal), 0 5px 9px rgba(6, 31, 39, .22); }
.button--order,
.button--primary { color: var(--ink); background: linear-gradient(180deg, #d5e86d 0%, var(--lime) 55%, #96b421 100%); border-color: var(--charcoal); }
.button--order:hover,
.button--order:focus-visible,
.button--primary:hover,
.button--primary:focus-visible { box-shadow: 0 9px 0 var(--orange-dark), 0 16px 22px rgba(6, 31, 39, .28); }
.button--ghost { color: var(--ink); background: linear-gradient(180deg, #fffdf5, #f2dfaa); border-color: var(--charcoal); }
.button--ghost:hover,
.button--ghost:focus-visible { box-shadow: 0 9px 0 var(--aqua), 0 16px 22px rgba(6, 31, 39, .24); }
.button--dark { color: var(--paper); background: linear-gradient(180deg, #13566a, var(--ink)); border-color: var(--charcoal); }
.button--dark:hover,
.button--dark:focus-visible { box-shadow: 0 9px 0 var(--orange), 0 16px 22px rgba(6, 31, 39, .28); }

.hero {
  color: var(--paper);
  background:
    radial-gradient(circle at 14% 28%, rgba(43, 126, 114, .7), transparent 24rem),
    radial-gradient(circle at 38% 96%, rgba(239, 72, 35, .28), transparent 23rem),
    linear-gradient(145deg, #0a4c60 0%, var(--ink) 58%, #092a34 100%);
}
.hero::after {
  opacity: .16;
  background-image: radial-gradient(rgba(255, 250, 240, .8) .65px, transparent .75px);
}
.hero-image {
  border: 4px solid var(--charcoal);
  border-right: 0;
  box-shadow: -10px 10px 0 var(--lime), -20px 20px 0 var(--orange), -28px 30px 35px rgba(3, 20, 25, .38);
}
.hero-shade { background: linear-gradient(90deg, rgba(7, 51, 62, .5) 0%, transparent 25%), linear-gradient(0deg, rgba(6, 31, 39, .48) 0%, transparent 34%); }
.eyebrow { color: var(--yellow); text-shadow: 0 2px 0 rgba(6, 31, 39, .7); }
.eyebrow span { height: 3px; background: var(--lime); box-shadow: 0 2px 0 var(--orange-dark); }
.hero .hero-display span {
  color: var(--lime);
  text-shadow: 0 2px 0 #ecf6a1, 0 5px 0 #779318, 0 9px 0 var(--charcoal), 0 15px 20px rgba(3, 20, 25, .42);
}
.hero .hero-display em {
  color: var(--orange);
  text-shadow: 0 2px 0 #ffae42, 0 5px 0 #a52619, 0 9px 0 var(--charcoal), 0 15px 20px rgba(3, 20, 25, .42);
}
.hero .hero-display strong {
  color: var(--yellow);
  text-shadow: 0 2px 0 #fff09a, 0 5px 0 #d37f0c, 0 9px 0 var(--charcoal), 0 15px 20px rgba(3, 20, 25, .42);
}
.hero-copy { color: #fff8df; text-shadow: 0 2px 5px rgba(3, 20, 25, .48); }
.hero-proof { border-top-color: rgba(255, 250, 240, .32); }
.hero-proof strong { color: var(--yellow); text-shadow: 0 3px 0 var(--orange-dark); }
.scroll-cue { background: var(--orange); border: 2px solid var(--charcoal); box-shadow: 0 5px 0 var(--charcoal); }

.ticker {
  background: linear-gradient(180deg, #d6e96c, var(--lime));
  border-color: var(--charcoal);
  box-shadow: inset 0 5px 0 rgba(255, 255, 255, .32), inset 0 -5px 0 rgba(82, 105, 12, .25);
}
.ticker-track i { color: var(--orange); text-shadow: 0 2px 0 var(--charcoal); }
.flavor-reel { gap: clamp(1rem, 1.8vw, 1.8rem); background: linear-gradient(145deg, #0a4c60, var(--ink)); }
.flavor-shot {
  border: 3px solid var(--paper);
  border-radius: .4rem;
  box-shadow: 0 8px 0 var(--charcoal), 0 15px 22px rgba(3, 20, 25, .34);
  transform: perspective(900px) rotateX(.75deg);
}

.section-heading h2,
.menu-intro h2,
.locations-heading h2,
.location-copy h2,
.menu-page__intro h2 {
  text-shadow: 0 2px 0 #fff9e8, 0 5px 0 rgba(7, 51, 62, .15);
}
.section-heading h2 span,
.menu-intro h2 span,
.locations-heading h2 span,
.location-copy h2 span { color: var(--orange); text-shadow: 0 2px 0 #ffad48, 0 5px 0 var(--orange-dark), 0 8px 12px rgba(7, 51, 62, .2); }

.experience { background: radial-gradient(circle at 88% 10%, rgba(186, 214, 61, .34), transparent 21rem), var(--paper); }
.experience-cards { gap: clamp(1rem, 2vw, 1.7rem); border: 0; perspective: 1200px; }
.experience-card,
.experience-card:last-child {
  border: 3px solid var(--charcoal);
  border-radius: .55rem;
  box-shadow: 0 9px 0 var(--charcoal), 0 18px 26px rgba(6, 31, 39, .24);
  transform: translateY(0) rotateX(0);
  transition: transform .25s ease, box-shadow .25s ease;
}
.experience-card:nth-child(2) { box-shadow: 0 9px 0 var(--orange-dark), 0 18px 26px rgba(6, 31, 39, .24); }
.experience-card:nth-child(3) { box-shadow: 0 9px 0 #708b1d, 0 18px 26px rgba(6, 31, 39, .24); }
.experience-card:hover { transform: translateY(-8px) rotateX(1.5deg); box-shadow: 0 15px 0 var(--charcoal), 0 26px 32px rgba(6, 31, 39, .28); }
.card-number { color: var(--yellow); text-shadow: 0 3px 0 var(--orange-dark), 0 6px 0 var(--charcoal); }

.margarita-feature { background: linear-gradient(145deg, #ff6b2f 0%, var(--orange) 58%, #ce351f 100%); border-color: var(--charcoal); }
.margarita-photo {
  margin: 2rem 0 2rem 2rem;
  border: 4px solid var(--charcoal);
  border-radius: .55rem;
  box-shadow: 10px 10px 0 var(--yellow), 18px 19px 25px rgba(6, 31, 39, .3);
}
.photo-stamp { border: 3px solid var(--charcoal); box-shadow: 0 7px 0 var(--charcoal), 0 13px 18px rgba(6, 31, 39, .3); }
.margarita-copy h2 span { color: var(--yellow); text-shadow: 0 3px 0 #fff3a1, 0 7px 0 var(--charcoal), 0 12px 15px rgba(6, 31, 39, .3); }

.menu-section { background: radial-gradient(circle at 8% 91%, rgba(186, 214, 61, .45), transparent 19rem), var(--cream); }
.menu-gallery { gap: 1.2rem; perspective: 1200px; }
.menu-gallery figure {
  border: 3px solid var(--charcoal);
  border-radius: .4rem;
  box-shadow: 0 7px 0 var(--aqua), 0 13px 20px rgba(6, 31, 39, .2);
  transform: translateY(0);
  transition: transform .22s ease, box-shadow .22s ease;
}
.menu-gallery figure:nth-child(2) { box-shadow: 0 7px 0 var(--orange), 0 13px 20px rgba(6, 31, 39, .2); }
.menu-gallery figure:nth-child(3) { box-shadow: 0 7px 0 #769118, 0 13px 20px rgba(6, 31, 39, .2); }
.menu-gallery figure:hover { transform: translateY(-5px); }
.menu-gallery figcaption { border: 2px solid var(--charcoal); box-shadow: 0 4px 0 var(--charcoal); }

.playground { color: var(--paper); background: linear-gradient(145deg, #369482 0%, var(--aqua) 54%, #1d5e5e 100%); border-color: var(--charcoal); }
.playground-facts { border: 4px solid var(--charcoal); border-radius: .55rem; box-shadow: 12px 12px 0 var(--yellow), 21px 22px 28px rgba(6, 31, 39, .3); }
.playground h2 span { color: var(--yellow); text-shadow: 0 3px 0 #fff0a0, 0 7px 0 var(--charcoal), 0 12px 15px rgba(6, 31, 39, .28); }
.playground-note { color: var(--ink); background: linear-gradient(145deg, #ffdc50, var(--yellow)); border: 3px solid var(--charcoal); box-shadow: 0 9px 0 var(--charcoal), 0 18px 24px rgba(6, 31, 39, .28); }

.order-feature { background: linear-gradient(145deg, #0a4d61, var(--ink)); border-color: var(--charcoal); }
.order-feature__photo { border-right: 4px solid var(--charcoal); box-shadow: inset -12px 0 0 rgba(186, 214, 61, .9); }
.order-feature__copy h2 span { color: var(--orange); text-shadow: 0 3px 0 #ffae42, 0 7px 0 var(--charcoal), 0 12px 15px rgba(3, 20, 25, .4); }

.location-grid { gap: clamp(1rem, 2vw, 1.6rem); border: 0; perspective: 1100px; }
.location-card,
.location-card:last-child {
  border: 3px solid var(--charcoal);
  border-radius: .5rem;
  box-shadow: 0 9px 0 var(--aqua), 0 18px 24px rgba(6, 31, 39, .2);
  transform: translateY(0);
  transition: transform .22s ease, box-shadow .22s ease;
}
.location-card:nth-child(2) { box-shadow: 0 9px 0 var(--orange), 0 18px 24px rgba(6, 31, 39, .23); }
.location-card:nth-child(3) { box-shadow: 0 9px 0 #75901b, 0 18px 24px rgba(6, 31, 39, .2); }
.location-card:hover { transform: translateY(-6px); }
.location-card--feature { background: linear-gradient(145deg, #0b5063, var(--ink)); }
.original-stamp { border: 3px solid var(--charcoal); box-shadow: 0 6px 0 var(--orange-dark), 0 11px 14px rgba(6, 31, 39, .3); }

.story { background: radial-gradient(circle at 80% 25%, rgba(61, 142, 173, .35), transparent 24%), radial-gradient(circle at 14% 86%, rgba(239, 72, 35, .28), transparent 27%), linear-gradient(145deg, #d0e866, var(--lime)); border-color: var(--charcoal); }
.story h2 span { color: var(--orange); text-shadow: 0 3px 0 #ffad48, 0 7px 0 var(--charcoal), 0 12px 16px rgba(6, 31, 39, .25); }
.story-visual { border: 4px solid var(--charcoal); border-radius: .5rem; box-shadow: 12px 12px 0 var(--orange), 22px 22px 28px rgba(6, 31, 39, .28); }
.story-year-badge { background: var(--orange); border: 3px solid var(--charcoal); box-shadow: 0 5px 0 var(--charcoal); }

.catering { background: radial-gradient(circle at 18% 20%, rgba(255, 194, 26, .33), transparent 18rem), linear-gradient(145deg, #ff6f2f, var(--orange)); border-color: var(--charcoal); }
.catering h2 span { color: var(--yellow); text-shadow: 0 3px 0 #fff2a0, 0 7px 0 var(--charcoal), 0 12px 16px rgba(6, 31, 39, .3); }
.site-footer { background: linear-gradient(145deg, #0a4a5c, var(--charcoal)); border-top: 5px solid var(--lime); }
.footer-brand img { width: 14rem; padding: 0; background: transparent; filter: drop-shadow(0 5px 0 rgba(3, 20, 25, .9)) drop-shadow(0 12px 12px rgba(3, 20, 25, .35)); }

.subpage-body { background: var(--cream); }
.subpage-hero { border-color: var(--charcoal); box-shadow: inset 0 -8px 0 var(--lime); }
.subpage-hero::after { background: linear-gradient(90deg, rgba(7, 51, 62, .96) 0%, rgba(7, 51, 62, .75) 48%, rgba(6, 31, 39, .3) 100%); }
.subpage-hero h1 span { color: var(--yellow); text-shadow: 0 3px 0 #fff1a0, 0 7px 0 var(--orange-dark), 0 11px 0 var(--charcoal), 0 17px 23px rgba(3, 20, 25, .4); }
.menu-jump { color: var(--paper); background: rgba(7, 51, 62, .97); border-color: var(--charcoal); box-shadow: 0 5px 0 var(--lime), 0 11px 18px rgba(6, 31, 39, .2); }
.menu-jump a { color: var(--ink); background: linear-gradient(180deg, #d6e96c, var(--lime)); border: 2px solid var(--charcoal); border-radius: .25rem; box-shadow: 0 4px 0 var(--charcoal); }
.menu-jump a:hover,
.menu-jump a:focus-visible { transform: translateY(-2px); box-shadow: 0 6px 0 var(--orange-dark); }
.menu-category { border: 3px solid var(--charcoal); border-radius: .5rem; box-shadow: 0 9px 0 var(--aqua), 0 18px 24px rgba(6, 31, 39, .18); overflow: hidden; }
.menu-category:nth-child(3n + 2) { box-shadow: 0 9px 0 var(--orange), 0 18px 24px rgba(6, 31, 39, .18); }
.menu-category:nth-child(3n) { box-shadow: 0 9px 0 #748e1a, 0 18px 24px rgba(6, 31, 39, .18); }
.menu-category__head { background: linear-gradient(145deg, #0b5365, var(--ink)); box-shadow: inset 0 -5px 0 rgba(186, 214, 61, .8); }
.menu-disclaimer { background: linear-gradient(145deg, #ffda4b, var(--yellow)); border: 3px solid var(--charcoal); border-radius: .35rem; box-shadow: 0 8px 0 var(--orange-dark), 0 15px 20px rgba(6, 31, 39, .2); }
.location-highlights li { border: 3px solid var(--charcoal); border-radius: .35rem; box-shadow: 0 6px 0 var(--aqua); }
.location-highlights li:nth-child(2) { box-shadow-color: var(--orange); }
.location-highlights li:nth-child(3) { box-shadow-color: #748e1a; }
.location-panel { background: linear-gradient(145deg, #0b5365, var(--ink)); border: 4px solid var(--charcoal); border-radius: .5rem; box-shadow: 12px 12px 0 var(--orange), 22px 22px 28px rgba(6, 31, 39, .24); }
.location-page-hero {
  min-height: max(42rem, calc(100svh - 5.5rem));
  align-items: center;
}
.location-page-hero .location-panel--hero {
  background: rgba(7, 51, 62, .96);
  box-shadow: 12px 12px 0 var(--orange), 22px 22px 30px rgba(3, 20, 25, .42);
}
.location-overview { grid-template-columns: 1fr; }
.location-copy { max-width: 64rem; }
.nearby-section { background: linear-gradient(145deg, #3b9584, var(--aqua)); border-color: var(--charcoal); }
.nearby-section h2 { color: var(--paper); text-shadow: 0 3px 0 var(--orange-dark), 0 7px 0 var(--charcoal); }
.nearby-grid { gap: 1.2rem; border: 0; }
.nearby-grid article,
.nearby-grid article:last-child { border: 3px solid var(--charcoal); border-radius: .4rem; box-shadow: 0 8px 0 var(--charcoal), 0 15px 20px rgba(6, 31, 39, .22); }

@media (max-width: 1050px) {
  .experience-card:last-child { border: 3px solid var(--charcoal); }
  .location-card,
  .location-card:last-child { border: 3px solid var(--charcoal); }
}

@media (min-width: 761px) and (max-width: 1050px) {
  .location-hero__layout { grid-template-columns: minmax(0, .8fr) minmax(22rem, 1fr); gap: 2rem; }
  .location-page-hero h1 { font-size: clamp(4.5rem, 9vw, 6.5rem); }
}

@media (max-width: 760px) {
  .site-header,
  .site-header.scrolled { color: var(--paper); background: rgba(7, 51, 62, .985); box-shadow: 0 4px 0 var(--lime), 0 10px 22px rgba(6, 31, 39, .3); }
  .brand,
  .site-header.scrolled .brand { width: 7.15rem; filter: drop-shadow(0 4px 0 rgba(4, 27, 33, .95)) drop-shadow(0 8px 8px rgba(4, 25, 31, .3)); }
  .menu-toggle { color: var(--paper); background: rgba(255, 255, 255, .05); border: 2px solid var(--lime); box-shadow: 0 4px 0 var(--charcoal); }
  .hero { padding-top: 25.8rem; }
  .hero-image { border: 0; border-bottom: 4px solid var(--charcoal); box-shadow: 0 8px 0 var(--lime), 0 14px 0 var(--orange); }
  .hero .hero-display span,
  .hero .hero-display em,
  .hero .hero-display strong { text-shadow: 0 2px 0 rgba(255, 255, 255, .35), 0 5px 0 var(--charcoal), 0 10px 14px rgba(3, 20, 25, .4); }
  .flavor-reel { gap: .8rem; padding: 1rem; }
  .flavor-shot { box-shadow: 0 6px 0 var(--charcoal), 0 11px 16px rgba(3, 20, 25, .32); }
  .experience-cards,
  .location-grid { gap: 1.35rem; }
  .experience-card,
  .experience-card:last-child { border: 3px solid var(--charcoal); }
  .margarita-photo { margin: 1.2rem 1.2rem 0; box-shadow: 7px 7px 0 var(--yellow), 13px 14px 18px rgba(6, 31, 39, .28); }
  .menu-gallery { gap: 1rem; }
  .playground-facts { box-shadow: 7px 7px 0 var(--yellow), 13px 14px 18px rgba(6, 31, 39, .28); }
  .order-feature__photo { border-right: 0; border-bottom: 4px solid var(--charcoal); box-shadow: inset 0 -8px 0 rgba(186, 214, 61, .9); }
  .location-card,
  .location-card:last-child { border: 3px solid var(--charcoal); }
  .story-visual { box-shadow: 7px 7px 0 var(--orange), 13px 14px 18px rgba(6, 31, 39, .25); }
  .footer-brand img { width: 13rem; }
  .subpage-hero::after { background: linear-gradient(0deg, rgba(7, 51, 62, .97), rgba(7, 51, 62, .42)); }
  .location-page-hero { min-height: auto; padding: 2.4rem 1.2rem 3.3rem; align-items: stretch; }
  .location-hero__layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .location-page-hero h1 { font-size: clamp(4rem, 19vw, 6rem); }
  .location-page-hero .subpage-hero__content > p:not(.kicker) { margin-top: .85rem; font-size: 1rem; line-height: 1.4; }
  .location-page-hero .location-panel--hero { padding: 1.15rem; box-shadow: 8px 8px 0 var(--orange), 14px 15px 20px rgba(3, 20, 25, .36); }
  .location-panel--hero .open-status { margin-bottom: .7rem; }
  .location-panel--hero h2 { font-size: 2.6rem; }
  .location-panel--hero address { margin: .65rem 0; font-size: 1rem; line-height: 1.4; }
  .location-panel--hero .location-panel__phone { font-size: 1.8rem; }
  .location-panel--hero .hours-list { margin: .85rem 0; padding: .65rem 0; }
  .location-panel--hero .hours-list p { font-size: .78rem; }
  .location-panel--hero .location-panel__actions { grid-template-columns: 1fr 1fr; gap: .65rem; }
  .location-panel--hero .location-panel__actions .button { min-height: 2.8rem; padding: .55rem .45rem; font-size: .7rem; }
  .location-panel--hero .location-note { margin-top: .75rem; }
  .menu-category { box-shadow: 0 7px 0 var(--aqua), 0 13px 18px rgba(6, 31, 39, .18); }
  .location-panel { box-shadow: 8px 8px 0 var(--orange), 15px 16px 20px rgba(6, 31, 39, .22); }
  .nearby-grid { gap: 1.1rem; }
  .nearby-grid article,
  .nearby-grid article:last-child { border: 3px solid var(--charcoal); }
}

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }
::selection { color: var(--paper); background: var(--orange-dark); }

/* Keep the footer mark compact and at its original proportions. */
.footer-brand > img {
  width: 12rem;
  max-width: min(12rem, 45vw);
  height: auto;
  max-height: 5.5rem;
  aspect-ratio: 1200 / 548;
  flex: 0 0 auto;
  align-self: flex-end;
  object-fit: contain;
  object-position: left center;
  transform: none;
}

@media (max-width: 760px) {
  .footer-brand > img {
    width: 11rem;
    max-width: 55vw;
    max-height: 5rem;
    align-self: flex-start;
  }
}

@media (min-width: 761px) and (max-width: 1200px) {
  .main-nav a:nth-child(1),
  .main-nav a:nth-child(4) { display: none; }
  .main-nav a:nth-child(3) { display: block; }
}

/* Search and usability improvements. Preserve the approved 3D surfaces. */
[hidden]{display:none!important}
.hero h1.eyebrow{font-family:var(--body,Archivo,sans-serif);font-size:clamp(.85rem,1.5vw,1.15rem);font-weight:800;line-height:1.45;letter-spacing:.06em;max-width:40rem;text-shadow:none;margin:0 0 1.2rem;text-transform:uppercase;color:var(--lime)}
.hero-display{margin:0}
.location-page-hero h1{font-size:clamp(2.7rem,5vw,5.4rem);line-height:1.04}
.location-page-hero h1 .location-name{display:block;font-size:1.12em}
.store-services{display:flex;flex-wrap:wrap;gap:.7rem 1rem;margin-top:1.25rem;border-top:1px solid rgba(255,255,255,.25);padding-top:1rem;font-weight:800}
.store-services a{font-size:.9rem;min-height:34px;display:flex;align-items:center;text-decoration:underline;text-underline-offset:4px}
.menu-body .subpage-hero{min-height:0;padding-top:8rem;padding-bottom:2rem}
.menu-body .subpage-hero h1{font-size:clamp(2.8rem,6vw,5rem);line-height:1.02;max-width:900px}
.menu-body .subpage-hero__content{max-width:1000px}
.menu-body .menu-page{padding-top:1rem}
.menu-jump{top:var(--header-height,72px)}
.menu-jump--directory{max-height:none}
.menu-category,.menu-section-heading{scroll-margin-top:var(--menu-offset,280px)}
.menu-search{margin:1.6rem 0;padding:1.2rem;background:var(--paper);border:3px solid var(--ink);border-radius:10px;box-shadow:0 6px 0 var(--lime)}
.menu-search label{display:block;font-weight:800;margin-bottom:.5rem}
.menu-search>div{display:flex;gap:.75rem}
.menu-search input{min-width:0;flex:1;border:2px solid var(--ink);border-radius:6px;font:inherit;padding:.8rem}
.menu-search button{border:2px solid var(--ink);background:var(--lime);color:var(--ink);border-radius:6px;padding:.8rem;font:inherit;font-weight:800;cursor:pointer}
.menu-search p:empty{display:none}
.menu-item[hidden],.menu-category[hidden]{display:none!important}
.menu-item__line b{white-space:normal;text-align:right}
.content-page h2{margin-top:1.7rem;line-height:1.1}
.content-page p,.content-page li{line-height:1.65}
.content-page ul{padding-left:1.4rem}
.content-page .location-grid{padding-top:1.3rem;gap:1.4rem}
.content-page .location-card{padding:1.35rem}
.content-page a{text-underline-offset:4px}
@media(max-width:760px){
 .menu-body .subpage-hero{padding-top:6.3rem;padding-bottom:1.3rem}
 .menu-body .subpage-hero h1{font-size:2.6rem;max-width:22rem;margin-bottom:.8rem}
 .menu-body .subpage-hero .kicker{display:none}
 .menu-body .subpage-hero p{font-size:.92rem}
 .menu-body .subpage-actions{margin-top:.8rem}
 .menu-jump__group strong{font-size:.82rem}
 .menu-jump a{font-size:.83rem;min-height:36px}
 .menu-jump__group{padding-bottom:.15rem}
 .location-page-hero h1{font-size:2.8rem}
 .hero h1.eyebrow{font-size:.9rem}
 .content-page .location-grid{grid-template-columns:1fr}
}

.menu-extra-links{display:flex;flex-wrap:wrap;gap:.75rem 1rem;margin:1.5rem 0 0;font-weight:800}.menu-extra-links a{padding:.4rem 0;text-underline-offset:4px}.menu-extra-links strong{align-self:center}
@media(max-width:760px){.menu-body .subpage-hero{padding-top:2rem}.menu-body .subpage-hero__content>p:not(.kicker){font-size:.92rem;margin-top:.8rem}.menu-extra-links{font-size:.9rem}}
@media(max-width:760px){.menu-body .subpage-hero::before{background-image:url('/assets/street-tacos-clean-720.webp')}.hero-image{background-image:url('/assets/fajitas-clean.webp')}}
