@import url("assets/brand/tokens.css");
:root {
  --paper: #ede7c9;
  --ink: #1a1409;
  --orange: #aa6734;
  --green: #478b55;
  --pink: #d62072;
  --purple: #7716c8;
  --yellow: #eea815;
  --blue: #1f6fbf;
  --line: #b0ab96;
  --header: 108px;
  --max: 1296px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 28px);
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Special Elite";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  font-synthesis: none;
  letter-spacing: 0.005em;
}
body.modal-open {
  overflow: hidden;
}
button,
input,
textarea,
select {
  font: inherit;
  font-size: 16px;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
a:hover {
  text-decoration-thickness: 2px;
}
img,
video {
  max-width: 100%;
  display: block;
}
img {
  height: auto;
}
button {
  background: var(--paper);
}
h1,
h2,
h3,
h4,
.display {
  font-family: "Cabin Sketch";
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.05;
  margin: 0;
}
h1 {
  font-size: clamp(3.6rem, 8.5vw, 8rem);
}
h2 {
  font-size: clamp(2.7rem, 5vw, 4.6rem);
}
h3 {
  font-size: 1.65rem;
}
p {
  margin: 0 0 1.1rem;
}
p:last-child {
  margin-bottom: 0;
}
figure {
  margin: 0;
}
button,
a {
  touch-action: manipulation;
}
::selection {
  background: var(--yellow);
  color: var(--ink);
}
:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 5px;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 10px;
  padding: 12px;
  background: var(--paper);
  transform: translateY(-200%);
}
.skip-link:focus {
  transform: none;
}
.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  line-height: 1.6;
}
.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.65;
  max-width: 49ch;
}
.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  text-decoration: none;
  line-height: 1.25;
  text-align: center;
}
.book-button {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--ink);
  transform-origin: 50% 75%;
  transition:
    transform 0.14s,
    box-shadow 0.14s;
}
.book-button:hover {
  animation: book-wobble 0.45s ease;
}
.book-button:active {
  transform: translateY(3px) rotate(-1deg);
  box-shadow: inset 0 -2px 0 var(--ink);
}
@keyframes book-wobble {
  0%,
  100% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(-2deg);
  }
  70% {
    transform: rotate(1.5deg);
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand-link {
  display: block;
  flex-shrink: 0;
  padding: 7px 0;
}
.brand-link img {
  width: 128px;
  height: 100px;
  object-fit: contain;
}
.brand-group {
  display: flex;
  align-items: center;
  gap: 30px;
}
.live-status {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.45;
  max-width: 202px;
  min-height: 48px;
  justify-content: center;
  flex-direction: column;
}
.live-status .status-text:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  margin: 0 8px 2px 0;
}
.live-status[data-open="true"] .status-text:before {
  background: var(--green);
  border-color: var(--green);
}
.live-status .eyebrow {
  font-size: 10px;
  letter-spacing: 0.12em;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.desktop-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  text-decoration: none;
}
.desktop-nav a[aria-current="page"] {
  text-decoration: underline;
}
.header-cta {
  font-size: 14px;
  padding-inline: 19px;
}
.mobile-actions {
  display: none;
}
.loader {
  position: fixed;
  right: 24px;
  top: 126px;
  width: 100px;
  height: 100px;
  z-index: 50;
  pointer-events: none;
  background: var(--paper);
  padding: 12px;
  animation: loader-hide 0.85s forwards;
}
.loader img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: ink-reveal 0.65s ease both;
}
@keyframes ink-reveal {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0);
  }
}
@keyframes loader-hide {
  0%,
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.hero {
  position: relative;
  height: 610px;
  overflow: hidden;
  margin-top: 22px;
  color: var(--paper);
  background: var(--paper);
}
.hero-media,
.hero-video,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media img,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media img {
  object-position: 68% 42%;
}
.hero-scrim {
  background:
    linear-gradient(90deg, rgba(26, 20, 9, 0.81), rgba(26, 20, 9, 0.25) 70%),
    linear-gradient(0deg, rgba(26, 20, 9, 0.72), transparent 75%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding: 48px 52px;
  pointer-events: none;
}
.hero-content a,
.hero-content button {
  pointer-events: auto;
}
.hero h1 {
  font-size: clamp(5rem, 9.5vw, 8.7rem);
  margin: 20px 0 14px;
  line-height: 0.93;
  max-width: 700px;
}
.hero .tagline {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}
.hero-actions .button {
  background: var(--paper);
  color: var(--ink);
}
.hero-actions .enter-button {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}
.hero-address {
  position: absolute;
  right: 28px;
  bottom: 27px;
  text-align: right;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}
.hero:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 10px;
  z-index: 3;
  background: var(--paper);
  clip-path: polygon(
    0 65%,
    3% 30%,
    6% 65%,
    9% 25%,
    12% 80%,
    15% 20%,
    18% 70%,
    21% 30%,
    24% 60%,
    27% 30%,
    30% 75%,
    33% 10%,
    36% 70%,
    39% 30%,
    42% 60%,
    45% 25%,
    48% 70%,
    51% 20%,
    54% 65%,
    57% 20%,
    60% 80%,
    63% 30%,
    66% 60%,
    69% 30%,
    72% 65%,
    75% 20%,
    78% 65%,
    81% 30%,
    84% 65%,
    87% 25%,
    90% 75%,
    93% 20%,
    96% 70%,
    100% 35%,
    100% 100%,
    0 100%
  );
}
.hero-video {
  display: none;
  touch-action: pan-y;
}
.hero.exploring .hero-video {
  display: block;
}
.hero.exploring .hero-content,
.hero.exploring .hero-media,
.hero.exploring .hero-address {
  display: none;
}
.hero.exploring .hero-scrim {
  background: linear-gradient(0deg, rgba(26, 20, 9, 0.85), transparent 45%);
}
.room-controls {
  display: none;
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  z-index: 5;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero.exploring .room-controls {
  display: flex;
}
.room-controls button {
  background: var(--paper);
  min-width: 48px;
  min-height: 48px;
  border: 0;
  padding: 12px;
}
.room-controls input {
  flex: 1;
  min-width: 100px;
  accent-color: var(--paper);
  height: 28px;
}
.room-controls label {
  font-size: 14px;
}
.room-close {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 5;
  display: none;
  min-height: 48px;
  padding: 12px 16px;
  border: 0;
}
.hero.exploring .room-close {
  display: flex;
  align-items: center;
  gap: 12px;
}
.room-message {
  display: none;
}
.opening-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--ink);
  padding: 16px 0;
  font-size: 13px;
}
.opening-strip span:last-child {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chapter {
  padding-block: 78px;
}
.chapter-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 36px;
}
.chapter-header h2 {
  margin-top: 12px;
}
.chapter-header .intro {
  max-width: 46ch;
  justify-self: end;
}
.orange {
  color: var(--orange);
}
.green {
  color: var(--green);
}
.pink {
  color: var(--pink);
}
.chapter-line {
  border-top: 1px solid var(--line);
}
@media (min-width: 1440px) {
  .hero {
    height: 630px;
  }
}
@media (max-width: 1050px) {
  .brand-group {
    gap: 20px;
  }
  .desktop-nav {
    gap: 22px;
  }
  .header-inner {
    gap: 18px;
  }
  .live-status {
    max-width: 165px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
}
@media (max-width: 800px) {
  :root {
    --header: 108px;
  }
  .wrap {
    width: calc(100% - 36px);
  }
  .header-inner {
    gap: 14px;
  }
  .brand-link {
    flex-shrink: 0;
  }
  .live-status {
    max-width: 176px;
    font-size: 14px;
    align-items: flex-end;
    text-align: right;
  }
  .live-status .eyebrow {
    font-size: 10px;
  }
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .mobile-actions {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--paper);
    border-top: 1px solid var(--ink);
    padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
    z-index: 40;
    transform: translateY(calc(100% + 12px));
    pointer-events: none;
    transition: transform 0.28s ease;
  }
  .mobile-actions.is-visible {
    transform: none;
    pointer-events: auto;
  }
  .mobile-actions a {
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
    min-height: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    text-decoration: none;
    font-size: 11px;
    line-height: 1.15;
  }
  .mobile-actions .book-button {
    border: 1px solid var(--ink);
    background: var(--yellow);
    margin-inline: 4px;
  }
  .mobile-actions .menu-button,
  .mobile-actions .directions-button,
  .mobile-actions .gift-button {
    border: 1px solid var(--ink);
    margin-inline: 4px;
  }
  .mobile-actions .menu-button {
    background: var(--blue);
    color: var(--paper);
  }
  .mobile-actions .directions-button {
    background: var(--green);
    color: var(--paper);
  }
  .mobile-actions .icon {
    width: 22px;
    height: 22px;
  }
  body {
    padding-bottom: calc(69px + env(safe-area-inset-bottom));
  }
  .hero {
    height: 580px;
    margin-top: 14px;
    width: calc(100% - 24px);
  }
  .hero-content {
    padding: 30px 23px;
    justify-content: flex-end;
    padding-bottom: 94px;
  }
  .hero h1 {
    font-size: clamp(4.7rem, 15.6vw, 7rem);
    line-height: 0.97;
    margin: 16px 0;
  }
  .hero .eyebrow {
    font-size: 11px;
  }
  .hero-media img {
    object-position: 72% 48%;
  }
  .hero-scrim {
    background: linear-gradient(
      0deg,
      rgba(26, 20, 9, 0.91),
      rgba(26, 20, 9, 0.31) 75%,
      rgba(26, 20, 9, 0.1)
    );
  }
  .hero .tagline {
    font-size: 18px;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 20px;
  }
  .hero-actions .button {
    font-size: 14px;
    padding: 13px 14px;
  }
  .hero-actions .icon {
    width: 16px;
  }
  .hero-address {
    left: 23px;
    right: auto;
    text-align: left;
    bottom: 26px;
    font-size: 10px;
  }
  .opening-strip {
    padding-block: 16px;
    font-size: 12px;
    gap: 10px;
  }
  .opening-strip .strip-mantra {
    display: none;
  }
  .opening-strip span:last-child {
    gap: 7px;
  }
  .chapter {
    padding-block: 54px;
  }
  .chapter-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
  }
  .chapter-header .intro {
    justify-self: start;
  }
  .chapter-header h2 {
    font-size: 2.9rem;
  }
  .loader {
    top: 116px;
    right: 14px;
  }
  .room-controls {
    left: 16px;
    right: 16px;
    bottom: 18px;
    gap: 8px;
  }
  .room-controls label {
    width: 100%;
    font-size: 12px;
  }
  .room-controls input {
    min-width: 80px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .loader {
    display: none !important;
  }
}
/* Food wall: paper slips with two staggered rows and user-controlled looping. */
.gallery-scroller {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  padding: 20px 0 24px;
  touch-action: pan-x pan-y;
}
.gallery-scroller::-webkit-scrollbar {
  display: none;
}
.gallery-track {
  display: flex;
  width: max-content;
}
.gallery-set {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-auto-flow: column;
  grid-auto-columns: 244px;
  gap: 20px;
  padding-right: 20px;
}
.gallery-card {
  position: relative;
  display: block;
  border: 0;
  padding: 0 0 7px;
  text-align: left;
  align-self: start;
  background: var(--paper);
  width: 244px;
  transition: clip-path 0.3s;
}
.gallery-card:nth-child(4n + 3),
.gallery-card:nth-child(4n + 4) {
  transform: translateY(19px);
}
.gallery-card:nth-child(4n + 1) {
  transform: rotate(-1.3deg);
}
.gallery-card:nth-child(4n + 2) {
  transform: rotate(0.9deg);
}
.gallery-image {
  display: block;
  height: 204px;
  overflow: hidden;
  clip-path: polygon(0 1%, 99% 0, 100% 98%, 1% 100%);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(var(--drift, 0px)) scale(1.08);
  transition: scale 0.3s;
}
.gallery-card:hover img {
  scale: 1.045;
}
.gallery-caption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 11px 2px 0;
  font-size: 13px;
  line-height: 1.3;
}
.gallery-caption span:last-child {
  white-space: nowrap;
}
.gallery-expand {
  position: absolute;
  right: 9px;
  top: 9px;
  background: var(--paper);
  padding: 6px;
  display: flex;
}
.gallery-expand .icon {
  width: 16px;
  height: 16px;
}
.gallery-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
}
.gallery-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}
.gallery-buttons > span {
  margin-right: 12px;
}
.round-button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--paper);
}
.round-button:hover {
  background: var(--yellow);
}
.previous .icon {
  transform: rotate(180deg);
}
.margarita-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}
.marg-card {
  min-width: 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 0 0 12px;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.marg-photo {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 15px;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-top: 5px solid var(--pink);
  clip-path: polygon(
    0 0,
    100% 0,
    100% 99%,
    94% 100%,
    86% 99%,
    76% 100%,
    69% 99%,
    57% 100%,
    49% 99%,
    38% 100%,
    30% 99%,
    20% 100%,
    11% 99%,
    0 100%
  );
}
.marg-card:nth-child(3n + 2) .marg-photo {
  border-color: var(--purple);
}
.marg-card:nth-child(3n) .marg-photo {
  border-color: var(--yellow);
}
.marg-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform: translateY(var(--drift, 0px)) scale(1.08);
  will-change: transform;
  transition: transform 0.4s;
}
.marg-card:hover img {
  transform: translateY(var(--drift, 0px)) scale(1.04);
}
.marg-number {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 6px 0;
  background: var(--paper);
  color: var(--pink);
  font-size: 42px;
  line-height: 1;
}
.marg-name {
  font-size: 22px;
  letter-spacing: 0.04em;
  line-height: 1.15;
  overflow-wrap: normal;
}
.marg-price {
  font-size: 14px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
}
.marg-price .icon {
  width: 16px;
  height: 16px;
}
.marg-controls {
  display: none;
}
.room-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 30px 54px;
  align-items: center;
}
.room-big img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.room-big figcaption {
  padding-top: 12px;
}
.room-copy h2 {
  margin: 15px 0 24px;
}
.room-copy {
  max-width: 44ch;
}
.room-small {
  grid-column: 2;
  grid-row: 2;
}
.room-small img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.room-footnote {
  grid-row: 2;
  max-width: 46ch;
}
.room-footnote p {
  font-size: 22px;
  margin-bottom: 22px;
}
.find-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.find-copy h2 {
  margin: 18px 0 26px;
}
.find-section figure img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center 63%;
}
.find-section figcaption {
  margin-top: 12px;
}
.action-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 25px 0 8px;
}
.site-footer {
  border-top: 1px solid var(--ink);
  padding: 44px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 64px;
}
.footer-brand img {
  width: 176px;
  height: 138px;
  object-fit: contain;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 14px;
}
.footer-grid > .footer-brand + .footer-column {
  min-width: 0;
}
.footer-grid .eyebrow {
  margin: 10px 0 18px;
}
.hours-list {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}
.hours-list > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 7px 0;
}
.hours-list dd {
  margin: 0;
  text-align: right;
}
.footer-grid .hours-list > div {
  display: block;
  padding: 0 0 9px;
}
.footer-grid .hours-list dd {
  text-align: left;
}
.footer-grid > div:last-child {
  font-size: 14px;
}
.footer-grid .button {
  font-size: 14px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 32px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
}
.footer-bottom nav {
  display: flex;
  gap: 22px;
}
.footer-bottom nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-bottom .icon {
  width: 18px;
  height: 18px;
}
.page-intro {
  padding-block: 58px 44px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  align-items: end;
  gap: 60px;
}
.page-intro h1 {
  font-size: clamp(3.6rem, 7.5vw, 6.5rem);
  margin: 18px 0 24px;
}
.menu-intro {
  grid-template-columns: 1fr 230px;
  align-items: center;
}
.menu-ornament {
  width: 170px;
  height: 170px;
  object-fit: contain;
  justify-self: end;
}
.category-nav {
  position: sticky;
  top: var(--header);
  z-index: 25;
  background: var(--paper);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.category-scroll {
  display: flex;
  gap: 42px;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.category-scroll::-webkit-scrollbar {
  display: none;
}
.category-scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 61px;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  font-size: 15px;
  padding: 0 3px;
}
.category-scroll a.active:after {
  content: "";
  height: 4px;
  background: var(--pink);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.category-scroll a.active {
  font-weight: 400;
}
.allergy-note {
  padding-top: 24px;
  font-size: 14px;
  line-height: 1.6;
}
.allergy-note p {
  margin-bottom: 5px;
}
.dietary-key {
  font-size: 12px;
}
.menu-section {
  padding-block: 58px 12px;
  scroll-margin-top: calc(var(--header) + 80px);
}
.menu-section-heading {
  display: flex;
  align-items: baseline;
  gap: 36px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 28px;
}
.menu-section-heading h2 {
  font-size: 3.3rem;
  color: var(--purple);
}
.menu-section-heading p {
  max-width: 66ch;
  font-size: 15px;
}
.menu-section:nth-of-type(3n) .menu-section-heading h2 {
  color: var(--green);
}
#margaritas .menu-section-heading h2 {
  color: var(--pink);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 28px;
}
.menu-card {
  min-width: 0;
}
.menu-photo {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.45;
}
.menu-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.menu-photo:hover img {
  transform: scale(1.04);
}
.photo-expand {
  position: absolute;
  right: 9px;
  bottom: 9px;
  background: var(--paper);
  padding: 7px;
  display: flex;
}
.menu-number {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 44px;
  background: var(--paper);
  color: var(--pink);
  padding: 5px 8px;
}
.menu-card-copy {
  padding: 18px 0 12px;
  border-bottom: 1px solid var(--line);
}
.item-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 12px;
}
.item-heading h3 {
  font-size: 1.7rem;
  line-height: 1.12;
  letter-spacing: 0.045em;
  max-width: 85%;
}
.item-price {
  font-size: 17px;
  white-space: nowrap;
}
.menu-card-copy p {
  font-size: 15px;
  line-height: 1.65;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 12px;
}
.chip {
  font-size: 11px;
  padding: 3px 7px;
  border: 1px solid var(--line);
  line-height: 1.5;
  letter-spacing: 0.025em;
}
.drinks-group {
  padding-bottom: 30px;
}
.drinks-heading {
  margin: 25px 0 8px;
  font-size: 2rem;
}
.drinks-group > p {
  font-size: 14px;
}
.drinks-grid .menu-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
}
.drinks-grid .menu-photo {
  aspect-ratio: 1;
}
.drinks-grid .menu-card-copy {
  padding-top: 0;
}
.drinks-grid .item-heading {
  display: block;
}
.drinks-grid .item-heading h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  max-width: none;
}
.drinks-grid .photo-expand {
  right: 4px;
  bottom: 4px;
  padding: 3px;
}
.drinks-grid .photo-expand .icon {
  height: 15px;
  width: 15px;
}
.drinks-grid .no-photo .menu-card-copy {
  grid-column: 1/-1;
}
.drinks-grid .no-photo {
  padding-left: 0;
}
#drinks {
  padding-bottom: 60px;
}
.story-intro h1 {
  font-size: clamp(3.5rem, 6.3vw, 6rem);
}
.story-intro > div:last-child {
  max-width: 43ch;
}
.story-banner {
  position: relative;
}
.story-banner img {
  height: 460px;
  width: 100%;
  object-fit: cover;
  object-position: center 43%;
}
.story-banner > span {
  display: block;
  margin-top: 12px;
}
.chef-section {
  display: grid;
  grid-template-columns: 0.78fr 1.2fr;
  gap: 84px;
  align-items: start;
}
.chef-section figure img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.chef-section figcaption,
.chef-timeline figcaption {
  padding-top: 12px;
  font-size: 13px;
}
.chef-story h2 {
  font-size: 3.6rem;
  margin: 12px 0 26px;
}
.chef-story p {
  max-width: 62ch;
}
.chef-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-bottom: 60px;
}
.chef-timeline img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center 28%;
}
.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.philosophy h2 {
  margin: 14px 0 24px;
}
.philosophy > div > p {
  max-width: 48ch;
}
.values {
  display: grid;
  gap: 25px;
}
.values h3 {
  margin-bottom: 12px;
}
.values > div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}
.values > div:last-child {
  border: 0;
  padding: 0;
}
.pass-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
  padding-bottom: 78px;
}
.pass-section img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center 48%;
}
.pass-section h2 {
  margin: 14px 0 25px;
}
.pass-section .button {
  margin-top: 12px;
}
.visit-intro {
  grid-template-columns: 1fr 1fr;
}
.visit-intro > div:last-child {
  max-width: 43ch;
}
.visit-intro .text-link {
  font-size: 15px;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
  padding-block: 20px 78px;
}
.visit-grid h2 {
  font-size: 2.9rem;
  margin-bottom: 22px;
}
.hours-block,
.map-block,
.contact-block {
  scroll-margin-top: calc(var(--header) + 24px);
  padding-bottom: 35px;
  margin-bottom: 35px;
  border-bottom: 1px solid var(--line);
}
.visit-status {
  margin-bottom: 14px;
  max-width: none;
  align-items: flex-start;
  text-align: left;
}
.hours-block .hours-list {
  font-size: 15px;
}
.hours-block .hours-list > div {
  border-top: 1px solid var(--line);
  padding: 12px 0;
}
.map-frame {
  width: 100%;
  height: 300px;
  border: 1px solid var(--line);
  background: var(--paper);
  margin-top: 8px;
}
.contact-block {
  border: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.contact-block a {
  display: block;
  min-height: 44px;
  overflow-wrap: anywhere;
}
.booking-section {
  border-left: 1px solid var(--line);
  padding-left: 44px;
  scroll-margin-top: calc(var(--header) + 24px);
}
.booking-section h2 {
  font-size: 3.6rem;
  margin-top: 12px;
}
.booking-note {
  font-size: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.booking-frame {
  width: 100%;
  height: 780px;
  border: 1px solid var(--line);
  background: var(--paper);
  margin-top: 12px;
  display: block;
}
.booking-fallback {
  font-size: 13px;
  margin-top: 12px;
}
.not-found {
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: center;
  gap: 100px;
  padding-block: 90px;
}
.not-found h1 {
  font-size: clamp(3.5rem, 6.5vw, 6.3rem);
  margin: 20px 0 30px;
}
.not-found > img {
  width: 200px;
  height: 250px;
  object-fit: contain;
  justify-self: center;
}
.lost-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 15px;
}
.lost-actions .button {
  min-width: 125px;
}
.food-dialog {
  width: 100vw;
  height: 100dvh;
  max-width: none;
  max-height: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  overflow-y: auto;
}
.food-dialog::backdrop {
  background: rgba(26, 20, 9, 0.8);
}
.food-dialog[open] {
  animation: dialog-open 0.32s ease both;
}
.dialog-close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background: var(--paper);
}
.dialog-layout {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  min-height: calc(100dvh - 70px);
  align-items: center;
  gap: 70px;
  width: min(1320px, calc(100% - 96px));
  margin: auto;
  padding-block: 70px;
}
.dialog-photo {
  overflow: hidden;
  aspect-ratio: 1;
}
.dialog-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dialog-copy {
  padding-right: 26px;
}
.dialog-copy h2 {
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  margin: 16px 0;
}
.dish-price {
  font-size: 24px;
  margin: 18px 0;
}
.dialog-copy > p {
  max-width: 50ch;
}
.dialog-copy .dish-note {
  font-size: 14px;
}
.dialog-copy .text-link {
  display: flex;
  max-width: max-content;
  margin-block: 12px;
}
.dialog-actions {
  position: sticky;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  background: var(--paper);
  padding: 6px 20px calc(6px + env(safe-area-inset-bottom));
  z-index: 3;
}
.dialog-actions a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-size: 14px;
}
.dialog-actions .book-button {
  background: var(--yellow);
  border: 1px solid var(--ink);
}
.dialog-actions .menu-button {
  background: var(--blue);
  color: var(--paper);
  border: 1px solid var(--ink);
}
.dialog-actions .directions-button {
  background: var(--green);
  color: var(--paper);
  border: 1px solid var(--ink);
}
@keyframes dialog-open {
  from {
    opacity: 0;
    clip-path: inset(8% 10%);
  }
  to {
    opacity: 1;
    clip-path: inset(0);
  }
}
@media (min-width: 801px) and (max-width: 1100px) {
  .footer-grid {
    gap: 30px;
    grid-template-columns: 0.85fr 1fr;
  }
  .marg-name {
    font-size: 18px;
  }
  .margarita-row {
    gap: 9px;
  }
  .marg-number {
    font-size: 32px;
  }
  .marg-photo {
    aspect-ratio: 2/3;
  }
  .visit-grid {
    gap: 36px;
  }
  .booking-section {
    padding-left: 28px;
  }
  .chef-section {
    gap: 45px;
  }
  .chef-story h2 {
    font-size: 3rem;
  }
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-set {
    grid-auto-columns: 220px;
  }
  .gallery-card {
    width: 220px;
  }
}
@media (max-width: 800px) {
  .gallery-set {
    grid-auto-columns: 200px;
    gap: 16px;
    padding-right: 16px;
  }
  .gallery-card {
    width: 200px;
  }
  .gallery-image {
    height: 174px;
  }
  .gallery-caption {
    font-size: 12px;
  }
  .gallery-bottom {
    align-items: flex-start;
    gap: 8px;
  }
  .gallery-bottom > .eyebrow {
    display: none;
  }
  .gallery-buttons {
    width: 100%;
    gap: 8px;
  }
  .gallery-buttons > span {
    margin-right: auto;
    font-size: 11px;
  }
  .gallery-buttons .round-button {
    width: 44px;
    height: 44px;
  }
  .gallery-scroller {
    margin-inline: -6px;
  }
  .margarita-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 2px 0 12px;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
  }
  .margarita-row::-webkit-scrollbar {
    display: none;
  }
  .marg-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }
  .marg-photo {
    aspect-ratio: 1.08;
  }
  .marg-name {
    font-size: 2rem;
  }
  .marg-number {
    font-size: 64px;
    top: 14px;
    left: 14px;
    padding: 5px 8px;
  }
  .marg-price {
    font-size: 16px;
    padding-top: 12px;
  }
  .marg-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    gap: 15px;
  }
  .marg-controls .eyebrow {
    font-size: 10px;
  }
  .marg-controls > div {
    display: flex;
    gap: 8px;
  }
  .marg-controls .round-button {
    width: 44px;
    height: 44px;
  }
  .room-grid {
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: stretch;
  }
  .room-copy {
    order: -1;
  }
  .room-copy h2 {
    margin: 14px 0 22px;
  }
  .room-big img {
    height: 270px;
  }
  .room-small img {
    height: 210px;
  }
  .room-footnote p {
    font-size: 18px;
  }
  .find-section {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .find-section figure img {
    height: 300px;
  }
  .find-copy h2 {
    margin: 15px 0 24px;
  }
  .action-row .button {
    font-size: 14px;
    padding: 13px 15px;
  }
  .site-footer {
    padding-top: 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .footer-brand {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .footer-brand img {
    width: 140px;
    height: 110px;
    margin-bottom: 0;
  }
  .footer-brand p {
    max-width: 16ch;
    font-size: 13px;
  }
  .footer-grid .hours-list > div {
    display: flex;
    padding-block: 6px;
    font-size: 13px;
    gap: 12px;
  }
  .footer-grid .hours-list dd {
    text-align: right;
  }
  .footer-grid > div {
    border-bottom: 1px solid var(--line);
    padding-bottom: 22px;
  }
  .footer-grid > div:last-child {
    border: 0;
    padding: 0;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 28px;
  }
  .footer-bottom nav {
    gap: 27px;
  }
  .page-intro {
    padding-block: 36px 28px;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .page-intro h1 {
    font-size: 3.9rem;
    margin: 14px 0 18px;
  }
  .menu-intro {
    position: relative;
  }
  .menu-intro h1 {
    font-size: 3.5rem;
  }
  .menu-ornament {
    position: absolute;
    right: 0;
    top: 19px;
    width: 58px;
    height: 58px;
    opacity: 0.8;
  }
  .menu-intro .eyebrow {
    max-width: 25ch;
    font-size: 10px;
  }
  .category-scroll {
    gap: 24px;
    width: 100%;
    padding-inline: 18px;
  }
  .category-scroll a {
    font-size: 14px;
    min-height: 58px;
    padding-inline: 1px;
  }
  .allergy-note {
    font-size: 13px;
    padding-top: 22px;
  }
  .dietary-key {
    font-size: 11px;
  }
  .menu-section {
    padding-top: 40px;
    scroll-margin-top: calc(var(--header) + 73px);
  }
  .menu-section-heading {
    display: block;
    padding-bottom: 15px;
    margin-bottom: 22px;
  }
  .menu-section-heading h2 {
    font-size: 3rem;
    margin-bottom: 12px;
  }
  .menu-section-heading p {
    font-size: 14px;
    line-height: 1.65;
  }
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .menu-card {
    display: grid;
    grid-template-columns: 104px 1fr;
    gap: 16px;
  }
  .menu-photo {
    aspect-ratio: 1;
  }
  .menu-card-copy {
    padding: 0 0 20px;
  }
  .item-heading {
    gap: 10px;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 10px;
  }
  .item-heading h3 {
    font-size: 1.4rem;
    line-height: 1.15;
    max-width: 100%;
  }
  .item-price {
    font-size: 16px;
  }
  .menu-card-copy p {
    font-size: 14px;
    line-height: 1.65;
  }
  .chip {
    font-size: 10px;
    padding: 3px 6px;
  }
  .chips {
    gap: 5px;
  }
  .photo-expand {
    right: 5px;
    bottom: 5px;
    padding: 4px;
  }
  .photo-expand .icon {
    height: 16px;
    width: 16px;
  }
  .menu-number {
    font-size: 30px;
    top: 4px;
    left: 4px;
    padding: 2px 4px;
  }
  .drinks-grid .menu-card {
    grid-template-columns: 104px 1fr;
  }
  .drinks-heading {
    font-size: 1.85rem;
  }
  .story-intro h1 {
    font-size: 3.5rem;
  }
  .story-banner img {
    height: 260px;
  }
  .chef-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .chef-section figure {
    max-width: 75%;
  }
  .chef-story h2 {
    font-size: 2.8rem;
  }
  .chef-timeline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 16px;
    padding-bottom: 45px;
  }
  .chef-timeline img {
    height: 200px;
  }
  .chef-timeline figure:last-child {
    grid-column: 1/-1;
    max-width: 75%;
    justify-self: end;
  }
  .chef-timeline figure:last-child img {
    height: 260px;
  }
  .chef-timeline figcaption {
    font-size: 12px;
  }
  .philosophy {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .pass-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 52px;
  }
  .pass-section img {
    height: 350px;
  }
  .pass-section h2 {
    font-size: 2.7rem;
  }
  .visit-intro {
    grid-template-columns: 1fr;
  }
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 15px 55px;
  }
  .visit-grid h2 {
    font-size: 2.5rem;
  }
  .hours-block .hours-list {
    font-size: 13px;
  }
  .hours-block .hours-list > div {
    gap: 14px;
  }
  .hours-block .hours-list dt {
    max-width: 145px;
  }
  .map-frame {
    height: 270px;
  }
  .booking-section {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 35px 0 0;
  }
  .booking-section h2 {
    font-size: 3rem;
  }
  .booking-frame {
    height: 780px;
  }
  .booking-fallback {
    font-size: 13px;
    line-height: 1.8;
  }
  .not-found {
    grid-template-columns: 1fr;
    padding-block: 50px;
    gap: 45px;
  }
  .not-found h1 {
    font-size: 3.5rem;
  }
  .not-found > img {
    height: 180px;
    width: 140px;
  }
  .lost-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .lost-actions .button {
    min-width: 0;
    font-size: 14px;
    padding: 13px 10px;
  }
  .dialog-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    padding: 0 0 28px;
    min-height: calc(100dvh - 66px);
  }
  .dialog-photo {
    width: 100%;
    aspect-ratio: 1.05;
  }
  .dialog-copy {
    padding: 0 22px;
  }
  .dialog-copy h2 {
    font-size: 2.8rem;
  }
  .dialog-close {
    top: 12px;
    right: 12px;
  }
  .dialog-actions {
    padding-inline: 8px;
  }
  .dialog-actions a {
    flex-direction: column;
    gap: 4px;
    font-size: 11px;
    min-height: 54px;
  }
  .dialog-actions .icon {
    height: 20px;
    width: 20px;
  }
  .dialog-copy .button {
    width: 100%;
  }
  .dish-price {
    font-size: 22px;
  }
  .food-dialog {
    padding-bottom: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-card,
  .gallery-card img {
    transform: none !important;
  }
  .gallery-card:hover img {
    scale: 1;
  }
  .marg-photo img,
  .menu-photo img {
    transform: none !important;
  }
  .gallery-scroller,
  .margarita-row {
    scroll-behavior: auto !important;
  }
}
@media print {
  .site-header,
  .mobile-actions,
  .site-footer,
  .category-nav,
  .menu-photo,
  .menu-intro .menu-ornament,
  .food-dialog {
    display: none !important;
  }
  body {
    padding: 0;
  }
  body[data-page="menu"] {
    font-size: 12pt;
  }
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }
  .menu-card,
  .drinks-grid .menu-card {
    display: block;
    break-inside: avoid;
  }
  .menu-card-copy p {
    font-size: 10pt;
  }
  .menu-section {
    padding-top: 24px;
  }
  .menu-section-heading h2 {
    font-size: 24pt;
  }
  .page-intro {
    padding: 0;
  }
  .wrap {
    width: 100%;
  }
}
.room-controls button,
.room-close {
  color: var(--ink);
}
.menu-card-copy p {
  font-size: 16px;
}
.chip {
  font-size: 12px;
}
.gallery-buttons > span {
  font-size: 12px;
}
@media (max-width: 800px) {
  .menu-intro {
    padding-block: 30px 22px;
  }
  .menu-intro h1 {
    font-size: clamp(2.25rem, 10.8vw, 3rem);
    margin-bottom: 0;
  }
  .menu-intro .eyebrow {
    max-width: 27ch;
  }
  .menu-ornament {
    width: 44px;
    height: 44px;
  }
  .menu-section-heading p {
    font-size: 15px;
  }
  .menu-card-copy p {
    font-size: 16px;
  }
  .chip {
    font-size: 12px;
  }
  .dietary-key {
    font-size: 12px;
  }
  .gallery-buttons > span {
    font-size: 12px;
  }
  .marg-controls .eyebrow {
    font-size: 12px;
  }
}
.menu-section {
  scroll-margin-top: 48px;
}
.hours-block,
.map-block,
.contact-block,
.booking-section {
  scroll-margin-top: 20px;
}
.dialog-copy .live-status {
  max-width: none;
  text-align: left;
  align-items: flex-start;
  margin-top: 12px;
}
@media (max-width: 800px) {
  .menu-card,
  .drinks-grid .menu-card {
    row-gap: 10px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
  }
  .menu-card-copy {
    display: contents;
  }
  .menu-photo {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
  }
  .menu-card .item-heading {
    grid-column: 2;
    margin-bottom: 0;
  }
  .menu-card .chips {
    grid-column: 2;
    margin-bottom: 0;
    align-self: start;
  }
  .menu-card-copy > p {
    grid-column: 1/-1;
    margin: 4px 0 0;
  }
  .menu-card.no-photo .item-heading,
  .menu-card.no-photo .chips {
    grid-column: 1/-1;
  }
  .dialog-copy .live-status {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 2;
    margin: 0;
    background: var(--paper);
    padding: 8px 10px;
    font-size: 12px;
    min-height: 48px;
    max-width: calc(100% - 84px);
  }
  .dialog-copy .live-status .eyebrow {
    font-size: 10px;
  }
}
@media (min-width: 1101px) {
  .margaritas-section .chapter-header {
    grid-template-columns: 1.65fr 0.75fr;
    gap: 45px;
  }
}
.story-banner img {
  object-position: center 87%;
}
.room-small img {
  object-position: center 88%;
}

/* Fiesta furniture from the bible: Marigold fills, Rosa on dish names and prices. */
.site-header {
  border-bottom: 3px solid var(--yellow);
}
.site-footer {
  border-top: 3px solid var(--yellow);
}
.opening-band {
  background: var(--yellow);
  color: var(--ink);
}
.opening-band .opening-strip {
  border-bottom: 0;
}
.hero-actions .menu-button {
  background: var(--blue);
  color: var(--paper);
  border-color: var(--ink);
}
.hero-actions .book-button {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--ink);
}
.menu-button {
  background: var(--blue);
  color: var(--paper);
  border-color: var(--ink);
  transform-origin: 50% 75%;
  transition:
    transform 0.14s,
    box-shadow 0.14s;
}
.menu-button:hover {
  animation: book-wobble 0.45s ease;
}
.menu-button:active {
  transform: translateY(3px) rotate(-1deg);
  box-shadow: inset 0 -2px 0 var(--ink);
}
.directions-button {
  background: var(--green);
  color: var(--paper);
  border-color: var(--ink);
  transform-origin: 50% 75%;
  transition:
    transform 0.14s,
    box-shadow 0.14s;
}
.directions-button:hover {
  animation: book-wobble 0.45s ease;
}
.directions-button:active {
  transform: translateY(3px) rotate(-1deg);
  box-shadow: inset 0 -2px 0 var(--ink);
}
.item-heading h3,
.gallery-caption span:first-child,
.marg-name,
.dialog-copy h2 {
  color: var(--pink);
}
.item-price,
.gallery-caption span:last-child,
.dish-price,
.marg-price {
  color: var(--pink);
}
.chip {
  border-color: var(--yellow);
}
.text-link:hover {
  color: var(--pink);
}
.gift-button {
  background: var(--pink);
  color: var(--paper);
  border-color: var(--ink);
  transform-origin: 50% 75%;
  transition:
    transform 0.14s,
    box-shadow 0.14s;
}
.gift-button:hover {
  animation: book-wobble 0.45s ease;
}
.gift-button:active {
  transform: translateY(3px) rotate(-1deg);
  box-shadow: inset 0 -2px 0 var(--ink);
}
@media (max-width: 800px) {
  .mobile-actions a {
    min-width: 0;
    padding-inline: 2px;
  }
  .mobile-actions a span {
    display: block;
    min-width: 0;
    text-align: center;
    max-width: 100%;
    font-size: 11px;
    letter-spacing: 0;
    line-height: 1.15;
    white-space: normal;
  }
  .mobile-actions .gift-button {
    border: 1px solid var(--ink);
    background: var(--pink);
    color: var(--paper);
    margin-inline: 4px;
  }
  .dialog-actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .dialog-actions a {
    min-width: 0;
  }
}
.dialog-actions .gift-button {
  background: var(--pink);
  color: var(--paper);
  border: 1px solid var(--ink);
}
.lost-actions .gift-button {
  min-width: 0;
}

.find-section .guest-figure {
  width: 100%;
  max-width: 430px;
  justify-self: center;
}
.find-section figure .guest-photo {
  height: auto;
  aspect-ratio: 3/4;
  object-position: center;
}

/* Three pencil-stroke frames keep the lettering alive without moving its layout. */
.ink-filters {
  position: absolute;
  overflow: hidden;
  pointer-events: none;
}
@keyframes title-squiggle {
  0%,
  100% {
    filter: url("#ink-squiggle-1");
  }
  33.333% {
    filter: url("#ink-squiggle-2");
  }
  66.666% {
    filter: url("#ink-squiggle-3");
  }
}
@keyframes sombrero-tip {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  45% {
    transform: translateY(-3px) rotate(-7deg);
  }
}
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .menu-ornament {
    transform-origin: 50% 70%;
  }
  .menu-ornament:hover {
    animation: sombrero-tip 0.65s ease-in-out;
  }
  .brand-link:hover img {
    animation: title-squiggle 0.36s steps(1, end) infinite;
  }
  :is(h1, h2, h3, .marg-name):hover,
  .menu-photo:hover + .menu-card-copy h3,
  .marg-photo:hover + .marg-name {
    animation: title-squiggle 0.36s steps(1, end) infinite;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :is(h1, h2, h3, .marg-name).is-squiggling,
  .brand-link.is-squiggling img {
    animation: title-squiggle 0.72s steps(1, end);
  }
}
