:root {
  --ink: #20211f;
  --paper: #fffdf6;
  --white: #ffffff;
  --lavender: #8c64a0;
  --lavender-deep: #60416f;
  --tomato: #d94a3a;
  --teal: #147b78;
  --leaf: #507c4a;
  --sun: #f6c84b;
  --pink: #f3a7a2;
  --line: rgba(32, 33, 31, 0.2);
  --shell: 1240px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
  --hand: "Segoe Print", "Bradley Hand", cursive;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body.dialog-open { overflow: hidden; }

img { display: block; max-width: 100%; }
button, a { color: inherit; }
button { font: inherit; }

.page-intro { display: none; }
.js .page-intro {
  position: fixed;
  z-index: 400;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--ink);
  background: var(--sun);
  overflow: hidden;
}
.page-intro span { font-family: var(--hand); font-size: 68px; font-weight: 700; line-height: 1; }
.page-intro small { margin-top: 7px; font-family: var(--serif); font-size: 15px; font-style: italic; }
.page-intro i { width: 150px; height: 3px; margin-top: 25px; background: var(--ink); transform-origin: left center; }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--sun);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 10px 34px;
  color: var(--white);
  background: rgba(32, 33, 31, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  transition: min-height 220ms ease, color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-compact {
  min-height: 64px;
  color: var(--ink);
  background: rgba(255, 253, 246, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 22px rgba(32, 33, 31, 0.08);
}

.wordmark {
  width: max-content;
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: inherit;
  text-decoration: none;
}

.wordmark strong {
  font-family: var(--hand);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.wordmark span {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
}

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { font-size: 13px; font-weight: 750; text-decoration: none; }
.main-nav a::after { content: ""; width: 0; height: 2px; display: block; margin-top: 3px; background: currentColor; transition: width 180ms ease; }
.main-nav a:hover::after { width: 100%; }

.header-order {
  min-height: 42px;
  justify-self: end;
  padding: 0 18px;
  color: var(--ink);
  background: var(--sun);
  border: 0;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.header-order:hover { background: #ffda68; transform: translateY(-2px); }

.nav-toggle {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle span { width: 17px; height: 1px; background: currentColor; }

.hero {
  position: relative;
  height: 82svh;
  min-height: 660px;
  max-height: 850px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--lavender-deep);
}

.hero-collage, .hero-photo, .hero-wash { position: absolute; inset: 0; }
.hero-photo { margin: 0; overflow: hidden; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo, .hero-photo img, .hero-copy, .hero-rating { will-change: transform; }
.hero-photo-main { z-index: 0; }
.hero-photo-main img { object-position: center 54%; }
.hero-wash { z-index: 1; right: auto; width: 58%; background: rgba(96, 65, 111, 0.92); }

.hero-photo-patio {
  z-index: 2;
  top: 13%;
  right: 4%;
  bottom: auto;
  left: auto;
  width: 27%;
  height: 31%;
  border: 9px solid var(--paper);
  box-shadow: 0 20px 50px rgba(32, 33, 31, 0.24);
}

.hero-photo-patio img { object-position: center; }

.hero-photo-door {
  z-index: 3;
  top: auto;
  right: 23%;
  bottom: -5%;
  left: auto;
  width: 17%;
  height: 39%;
  border: 9px solid var(--sun);
  transform: rotate(-3deg);
  box-shadow: 0 20px 50px rgba(32, 33, 31, 0.3);
}

.hero-photo-door img { object-position: 48% center; }

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(700px, 53%);
  margin-left: max(34px, calc((100vw - var(--shell)) / 2));
  padding: 64px 34px 26px 0;
}

.hero-kicker, .eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-kicker::before, .eyebrow::before { content: ""; width: 34px; height: 3px; display: inline-block; margin: 0 10px 3px 0; background: currentColor; }

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 96px;
  font-weight: 400;
  line-height: 0.82;
}

.hero h1 span { display: block; overflow: hidden; padding-bottom: 12px; }
.hero h1 span:last-child { margin-left: 92px; color: var(--sun); font-style: italic; }

.hero-lede {
  max-width: 560px;
  margin: 24px 0 0;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
}

.hero-actions, .visit-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  will-change: transform;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover { transform: translateY(-3px); }
.button-sun { color: var(--ink); background: var(--sun); }
.button-paper { color: var(--ink); background: var(--paper); border-color: rgba(32, 33, 31, 0.22); }

.hero-rating {
  position: absolute;
  z-index: 6;
  right: 7%;
  bottom: 8%;
  width: 126px;
  height: 126px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--ink);
  background: var(--sun);
  border-radius: 50%;
  transform: rotate(5deg);
  box-shadow: 0 12px 30px rgba(32, 33, 31, 0.22);
}

.hero-rating strong { font-family: var(--serif); font-size: 44px; font-weight: 400; line-height: 0.9; }
.hero-rating span { margin-top: 7px; font-size: 9px; font-weight: 850; line-height: 1.25; text-align: center; text-transform: uppercase; }

.hero-note {
  position: absolute;
  z-index: 5;
  right: 25px;
  top: 49%;
  margin: 0;
  color: var(--ink);
  font-family: var(--hand);
  font-size: 13px;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.hero-scroll {
  position: absolute;
  z-index: 7;
  left: max(34px, calc((100vw - var(--shell)) / 2));
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-size: 9px;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
}
.hero-scroll span { position: relative; width: 48px; height: 1px; overflow: hidden; background: rgba(255, 255, 255, 0.4); }
.hero-scroll span::after { content: ""; position: absolute; inset: 0; background: var(--sun); transform: translateX(-100%); animation: scrollCue 1.8s ease-in-out infinite; }
@keyframes scrollCue { 0% { transform: translateX(-100%); } 48%, 60% { transform: translateX(0); } 100% { transform: translateX(110%); } }

.service-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--ink);
}

.service-rail > div { min-height: 106px; display: flex; justify-content: center; flex-direction: column; padding: 18px 28px; border-right: 1px solid rgba(32, 33, 31, 0.22); }
.service-rail > div { position: relative; overflow: hidden; transition: transform 260ms ease, filter 260ms ease; }
.service-rail > div:nth-child(1) { background: var(--sun); }
.service-rail > div:nth-child(2) { color: var(--white); background: var(--teal); }
.service-rail > div:nth-child(3) { color: var(--white); background: var(--tomato); }
.service-rail > div:nth-child(4) { color: var(--white); background: var(--lavender); border-right: 0; }
.service-rail span { margin-bottom: 4px; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.service-rail strong { font-family: var(--serif); font-size: 19px; font-weight: 400; }

.favorites { padding: 118px max(28px, calc((100vw - var(--shell)) / 2)) 132px; background: var(--paper); }

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: end;
  gap: 56px;
  margin-bottom: 58px;
}

h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 66px;
  font-weight: 400;
  line-height: 0.98;
}

.section-intro > p:last-child, .menu-top > p { margin: 0 0 7px; color: #5e605a; font-size: 15px; }

.favorites-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 330px 330px;
  gap: 24px;
}

.favorite { position: relative; overflow: hidden; background: var(--white); border: 1px solid var(--line); will-change: clip-path, transform; }
.favorite figure { position: absolute; inset: 0; margin: 0; overflow: hidden; }
.favorite figure::after { content: ""; position: absolute; inset: auto 0 0; height: 44%; background: rgba(32, 33, 31, 0.66); }
.favorite img { width: 100%; height: 112%; object-fit: cover; transition: filter 500ms ease; will-change: transform; }
.favorite-feature { grid-column: 1 / 8; grid-row: 1 / 3; }
.favorite-burro { grid-column: 8 / 13; grid-row: 1; }
.favorite-bakes { grid-column: 8 / 13; grid-row: 2; }
.favorite-feature img { object-position: center 56%; }
.favorite-bakes img { object-position: center; }

.favorite-caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2px 22px;
  padding: 24px;
  color: var(--white);
}

.favorite-caption span { grid-column: 1 / 3; font-size: 10px; font-weight: 850; text-transform: uppercase; }
.favorite-caption h3 { margin: 0; font-family: var(--serif); font-size: 31px; font-weight: 400; line-height: 1; }
.favorite-caption p { grid-column: 1; margin: 7px 0 0; color: rgba(255, 255, 255, 0.8); font-size: 12px; }
.favorite-caption strong { grid-column: 2; grid-row: 2 / 4; color: var(--sun); font-family: var(--serif); font-size: 24px; font-weight: 400; }
.favorite-feature .favorite-caption { padding: 32px; }
.favorite-feature .favorite-caption h3 { font-size: 44px; }
.favorite-caption { transition: transform 420ms cubic-bezier(.2,.8,.2,1); }

.menu-section { padding: 118px max(28px, calc((100vw - var(--shell)) / 2)) 126px; background: #e3d4e9; }

.menu-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: end;
  gap: 60px;
  margin-bottom: 50px;
}

.menu-top > p { color: #504b52; }

.menu-desk {
  display: grid;
  grid-template-columns: 220px minmax(420px, 1fr) 300px;
  align-items: start;
  gap: 20px;
}

.menu-tabs { position: sticky; top: 88px; display: flex; flex-direction: column; border-top: 1px solid rgba(32, 33, 31, 0.32); }
.menu-tabs button { min-height: 68px; display: grid; grid-template-columns: 26px 1fr auto; align-items: center; gap: 8px; padding: 10px 9px; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid rgba(32, 33, 31, 0.32); font-size: 12px; font-weight: 800; text-align: left; cursor: pointer; transition: color 260ms ease, background-color 260ms ease, padding-left 260ms ease, transform 260ms ease; }
.menu-tabs button span, .menu-tabs button b { font-size: 10px; font-weight: 750; }
.menu-tabs button.is-active { padding-left: 14px; color: var(--white); background: var(--tomato); }

.menu-paper { min-height: 720px; padding: 34px 36px 26px; background: var(--paper); border: 1px solid rgba(32, 33, 31, 0.22); box-shadow: 8px 10px 0 rgba(96, 65, 111, 0.16); }
.menu-paper header { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding-bottom: 23px; border-bottom: 2px solid var(--ink); }
.menu-paper header p { margin: 0 0 4px; color: var(--tomato); font-family: var(--hand); font-size: 13px; }
.menu-paper header h3 { margin: 0; font-family: var(--serif); font-size: 42px; font-weight: 400; line-height: 1; }
.menu-paper header > span { padding-bottom: 5px; font-size: 10px; font-weight: 850; text-transform: uppercase; }
.menu-list { display: grid; }
.menu-item { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.menu-item { position: relative; transition: padding 240ms ease, background-color 240ms ease; }
.menu-item::before { content: ""; position: absolute; top: 0; bottom: 0; left: -36px; width: 3px; background: var(--tomato); transform: scaleY(0); transition: transform 240ms ease; }
.menu-item h4 { margin: 0; font-family: var(--serif); font-size: 20px; font-weight: 400; line-height: 1.2; }
.menu-item h4, .menu-item strong { transition: transform 240ms ease, color 240ms ease; }
.menu-item h4 em { display: inline-block; margin-left: 5px; color: var(--teal); font-family: var(--sans); font-size: 9px; font-style: normal; font-weight: 850; vertical-align: middle; }
.menu-item p { grid-column: 1; margin: -5px 0 0; color: #67675f; font-size: 11px; }
.menu-item strong { grid-column: 2; grid-row: 1 / 3; color: var(--tomato); font-family: var(--serif); font-size: 18px; font-weight: 400; }
.menu-paper footer { display: flex; flex-wrap: wrap; gap: 18px; padding-top: 20px; font-size: 9px; font-weight: 850; text-transform: uppercase; }

.menu-visual { position: sticky; top: 88px; overflow: hidden; color: var(--white); background: var(--teal); }
.menu-visual figure { height: 430px; margin: 0; overflow: hidden; }
.menu-visual img { width: 100%; height: 108%; object-fit: cover; will-change: transform; }
.menu-visual > div { min-height: 168px; display: flex; justify-content: space-between; flex-direction: column; gap: 24px; padding: 22px; }
.menu-visual > div > span { font-family: var(--serif); font-size: 24px; line-height: 1.1; }
.menu-visual button { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 13px 0 0; color: var(--white); background: transparent; border: 0; border-top: 1px solid rgba(255, 255, 255, 0.52); font-size: 11px; font-weight: 850; cursor: pointer; }
.menu-visual button b { font-size: 20px; font-weight: 400; }

.courtyard {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--leaf);
}

.courtyard-media, .courtyard-wash { position: absolute; inset: 0; }
.courtyard-media img { width: 100%; height: 112%; object-fit: cover; object-position: center; }
.courtyard-media img, .courtyard-wash, .courtyard-copy, .courtyard-quote { will-change: transform; }
.courtyard-wash { right: auto; z-index: 1; width: 61%; background: rgba(20, 123, 120, 0.91); }
.courtyard-copy { position: relative; z-index: 2; width: min(650px, 55%); margin-left: max(34px, calc((100vw - var(--shell)) / 2)); }
.courtyard-copy h2 { font-size: 68px; }
.courtyard-copy > p:not(.eyebrow) { max-width: 530px; margin: 26px 0; color: rgba(255, 255, 255, 0.82); font-size: 15px; }
.courtyard-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.courtyard-tags span { padding: 8px 10px; color: var(--ink); background: var(--sun); border-radius: 4px; font-size: 10px; font-weight: 850; }

.courtyard-quote {
  position: absolute;
  z-index: 3;
  right: max(28px, calc((100vw - var(--shell)) / 2));
  bottom: 44px;
  width: 330px;
  margin: 0;
  padding: 26px;
  color: var(--ink);
  background: var(--pink);
  border: 0;
  box-shadow: 8px 8px 0 rgba(32, 33, 31, 0.22);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.2;
  transform: rotate(2deg);
}

.courtyard-quote cite { display: block; margin-top: 16px; font-family: var(--sans); font-size: 9px; font-style: normal; font-weight: 850; text-transform: uppercase; }

.gallery-section { padding: 118px max(28px, calc((100vw - var(--shell)) / 2)) 140px; background: #f6e7a8; }
.gallery-heading { display: grid; grid-template-columns: minmax(0, 1fr) 360px; align-items: end; gap: 60px; margin-bottom: 60px; }
.gallery-heading .eyebrow { grid-column: 1 / 3; margin-bottom: -38px; }
.gallery-heading > p:last-child { margin: 0 0 7px; color: #5d5947; font-size: 14px; }

.gallery-collage { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: 260px 260px 260px; gap: 20px; }
.gallery-item { position: relative; margin: 0; overflow: hidden; background: var(--white); will-change: clip-path, transform; }
.gallery-item img { width: 100%; height: 112%; object-fit: cover; transition: filter 450ms ease; will-change: transform; }
.gallery-item figcaption { position: absolute; right: 12px; bottom: 12px; left: 12px; padding: 11px 13px; color: var(--white); background: rgba(32, 33, 31, 0.82); font-family: var(--serif); font-size: 17px; transition: transform 360ms cubic-bezier(.2,.8,.2,1), background-color 240ms ease; }
.gallery-front { grid-column: 1 / 6; grid-row: 1 / 3; transform: rotate(-1deg); }
.gallery-front img { object-position: center; }
.gallery-music { grid-column: 6 / 13; grid-row: 1; transform: rotate(1deg); }
.gallery-food { grid-column: 6 / 10; grid-row: 2 / 4; transform: rotate(-1deg); }
.gallery-patio { grid-column: 1 / 6; grid-row: 3; transform: rotate(1deg); }
.gallery-patio img { object-position: center 65%; }
.gallery-collage::after { content: "TOOLEY'S / TUCSON"; grid-column: 10 / 13; grid-row: 2 / 4; display: flex; align-items: center; justify-content: center; padding: 20px; color: var(--white); background: var(--tomato); font-family: var(--serif); font-size: 38px; line-height: 1.05; text-align: center; writing-mode: vertical-rl; }

.visit-section { min-height: 720px; display: grid; grid-template-columns: 1.1fr 0.9fr; background: var(--lavender); }
.visit-image { min-height: 720px; overflow: hidden; }
.visit-image img { width: 100%; height: 112%; object-fit: cover; object-position: center; }
.visit-copy { display: flex; justify-content: center; flex-direction: column; padding: 80px max(42px, calc((100vw - var(--shell)) / 2)); padding-left: 70px; color: var(--white); }
.visit-copy h2 { font-size: 54px; }
.visit-copy dl { margin: 34px 0 4px; }
.visit-copy dl div { display: grid; grid-template-columns: 90px 1fr; gap: 15px; padding: 11px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.35); }
.visit-copy dt { font-size: 10px; font-weight: 850; text-transform: uppercase; }
.visit-copy dd { margin: 0; font-family: var(--serif); font-size: 16px; }
.visit-copy dd a { text-decoration-thickness: 1px; text-underline-offset: 3px; }

.site-footer { min-height: 164px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; padding: 36px max(28px, calc((100vw - var(--shell)) / 2)); color: var(--white); background: var(--ink); }
.footer-wordmark strong { color: var(--pink); }
.site-footer p { margin: 0; color: rgba(255, 255, 255, 0.64); font-size: 11px; text-align: center; }
.site-footer > div { display: flex; justify-content: flex-end; gap: 22px; }
.site-footer > div a { font-size: 11px; font-weight: 800; text-decoration: none; }

.mobile-actions { display: none; }

.media-cursor {
  position: fixed;
  z-index: 250;
  top: 0;
  left: 0;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  padding: 9px;
  color: var(--ink);
  background: var(--sun);
  border: 1px solid rgba(32, 33, 31, 0.3);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4);
  will-change: transform, opacity, left, top;
}

dialog { padding: 0; color: var(--ink); background: var(--paper); border: 0; border-radius: 6px; box-shadow: 0 28px 70px rgba(32, 33, 31, 0.42); }
dialog::backdrop { background: rgba(32, 33, 31, 0.78); }
.order-dialog { width: min(680px, calc(100vw - 32px)); padding: 50px; }
.order-dialog h2 { font-size: 58px; }
.order-dialog > p:not(.eyebrow) { max-width: 540px; color: #5f615b; font-size: 14px; }
.dialog-close { position: absolute; top: 14px; right: 14px; width: 42px; height: 42px; display: grid; place-items: center; padding: 0; color: var(--ink); background: transparent; border: 1px solid var(--line); border-radius: 50%; font-size: 25px; cursor: pointer; }
.dialog-options { display: grid; gap: 9px; margin-top: 28px; }
.dialog-options a { min-height: 78px; display: grid; grid-template-columns: 1fr auto 24px; align-items: center; gap: 14px; padding: 13px 18px; color: var(--white); background: var(--teal); border-radius: 4px; text-decoration: none; transition: transform 180ms ease, background-color 180ms ease; }
.dialog-options a:nth-child(2) { background: var(--tomato); }
.dialog-options a:hover { transform: translateX(6px); }
.dialog-options span { font-family: var(--serif); font-size: 21px; }
.dialog-options b { font-size: 9px; text-transform: uppercase; }
.dialog-options i { font-size: 20px; font-style: normal; }

.js .reveal { opacity: 0; transform: translateY(34px); }
:focus-visible { outline: 3px solid var(--sun); outline-offset: 3px; }

@media (hover: hover) and (pointer: fine) {
  .service-rail > div:hover { z-index: 2; transform: translateY(-6px); filter: saturate(1.12); }
  .favorite:hover .favorite-caption { transform: translateY(-8px); }
  .favorite:hover img, .gallery-item:hover img { filter: saturate(1.12) contrast(1.03); }
  .gallery-item:hover figcaption { transform: translateY(-7px); background: rgba(32, 33, 31, 0.92); }
  .menu-tabs button:not(.is-active):hover { padding-left: 14px; transform: translateX(4px); }
  .menu-item:hover { padding-right: 8px; padding-left: 8px; background: rgba(246, 200, 75, 0.12); }
  .menu-item:hover::before { transform: scaleY(1); }
  .menu-item:hover h4 { transform: translateX(4px); }
  .menu-item:hover strong { color: var(--teal); transform: translateX(-4px); }
}

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav-toggle { display: flex; justify-self: end; }
  .header-order { display: none; }
  .main-nav { position: absolute; top: 100%; right: 0; left: 0; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 18px 28px 26px; color: var(--ink); background: var(--paper); border-bottom: 1px solid var(--line); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 11px 0; font-size: 14px; }
  .hero-copy { width: 59%; }
  .hero h1 { font-size: 80px; }
  .hero-photo-patio { width: 31%; }
  .hero-photo-door { right: 27%; width: 20%; }
  .hero-note { display: none; }
  .menu-desk { grid-template-columns: 190px minmax(390px, 1fr); }
  .menu-visual { position: relative; top: auto; grid-column: 2; display: grid; grid-template-columns: 1fr 1fr; }
  .menu-visual figure { height: 300px; }
  .menu-visual > div { min-height: 300px; }
  .courtyard-wash { width: 72%; }
  .courtyard-copy { width: 64%; }
  .visit-copy { padding-left: 48px; }
}

@media (max-width: 760px) {
  body { padding-bottom: 62px; }
  .site-header { min-height: 62px; padding: 8px 17px; }
  .site-header.is-compact { min-height: 58px; }
  .wordmark strong { font-size: 21px; }
  .hero { height: 76svh; min-height: 620px; max-height: 740px; }
  .hero-wash { width: 100%; background: rgba(96, 65, 111, 0.82); }
  .hero-photo-main img { object-position: 60% center; }
  .hero-photo-patio { top: 76px; right: 14px; width: 32%; height: 16%; border-width: 5px; }
  .hero-photo-door { right: 18px; bottom: -4%; width: 31%; height: 27%; border-width: 5px; }
  .hero-copy { width: calc(100% - 34px); margin-left: 17px; padding: 118px 0 120px; }
  .hero-kicker { max-width: 190px; font-size: 10px; }
  .hero h1 { font-size: 57px; line-height: 0.86; }
  .hero h1 span:last-child { margin-left: 46px; }
  .hero-lede { max-width: 300px; margin-top: 17px; font-size: 18px; }
  .hero-actions { max-width: 220px; flex-direction: column; margin-top: 20px; }
  .hero-actions .button { width: 100%; min-height: 46px; }
  .hero-rating { right: 36%; bottom: 22px; width: 92px; height: 92px; }
  .hero-rating strong { font-size: 32px; }
  .hero-rating span { font-size: 7px; }
  .hero-scroll { display: none; }
  .service-rail { grid-template-columns: 1fr 1fr; }
  .service-rail > div { min-height: 92px; padding: 14px 17px; border-bottom: 1px solid rgba(32, 33, 31, 0.22); }
  .service-rail strong { font-size: 16px; }
  .favorites, .menu-section, .gallery-section { padding: 78px 18px 88px; }
  .section-intro, .menu-top, .gallery-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 34px; }
  h2 { font-size: 43px; }
  .section-intro > p:last-child, .menu-top > p, .gallery-heading > p:last-child { font-size: 13px; }
  .favorites-layout { display: grid; grid-template-columns: 1fr; grid-template-rows: none; gap: 14px; }
  .favorite-feature, .favorite-burro, .favorite-bakes { grid-column: auto; grid-row: auto; min-height: 390px; }
  .favorite-feature { min-height: 500px; }
  .favorite-caption, .favorite-feature .favorite-caption { padding: 20px; }
  .favorite-feature .favorite-caption h3, .favorite-caption h3 { font-size: 29px; }
  .menu-top > p { margin: 0; }
  .menu-desk { display: block; }
  .menu-tabs { position: relative; top: auto; flex-direction: row; overflow-x: auto; margin: 0 -18px 14px; padding: 0 18px 7px; border-top: 0; scrollbar-width: none; }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .menu-tabs button { min-width: 154px; min-height: 58px; flex: 0 0 auto; border: 1px solid rgba(32, 33, 31, 0.28); border-right: 0; }
  .menu-tabs button:last-child { border-right: 1px solid rgba(32, 33, 31, 0.28); }
  .menu-paper { min-height: 0; padding: 25px 18px 20px; box-shadow: 5px 6px 0 rgba(96, 65, 111, 0.14); }
  .menu-paper header h3 { font-size: 34px; }
  .menu-paper header p { font-size: 11px; }
  .menu-item { gap: 8px 12px; padding: 14px 0; }
  .menu-item h4 { font-size: 18px; }
  .menu-item p { font-size: 10px; }
  .menu-visual { display: grid; grid-template-columns: 1fr; margin-top: 16px; }
  .menu-visual figure { height: 360px; }
  .menu-visual > div { min-height: 145px; }
  .courtyard { min-height: 760px; align-items: flex-start; }
  .courtyard-media img { object-position: 60% center; }
  .courtyard-wash { width: 100%; background: rgba(20, 123, 120, 0.8); }
  .courtyard-copy { width: calc(100% - 36px); margin: 0 18px; padding-top: 86px; }
  .courtyard-copy h2 { font-size: 43px; }
  .courtyard-copy > p:not(.eyebrow) { max-width: 340px; font-size: 13px; }
  .courtyard-tags { max-width: 320px; }
  .courtyard-quote { right: 18px; bottom: 32px; width: min(310px, calc(100% - 36px)); padding: 21px; font-size: 19px; }
  .gallery-heading .eyebrow { grid-column: auto; margin-bottom: -4px; }
  .gallery-collage { display: grid; grid-template-columns: 1fr; grid-template-rows: none; gap: 14px; }
  .gallery-front, .gallery-music, .gallery-food, .gallery-patio { grid-column: auto; grid-row: auto; height: 420px; transform: none; }
  .gallery-music, .gallery-patio { height: 300px; }
  .gallery-collage::after { grid-column: auto; grid-row: auto; min-height: 145px; font-size: 31px; writing-mode: horizontal-tb; }
  .visit-section { min-height: 0; grid-template-columns: 1fr; }
  .visit-image { min-height: 500px; }
  .visit-copy { padding: 70px 18px 76px; }
  .visit-copy h2 { font-size: 39px; }
  .visit-copy dl div { grid-template-columns: 78px 1fr; }
  .visit-actions { display: grid; grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; padding: 48px 18px; text-align: center; }
  .site-footer > div { justify-content: center; }
  .mobile-actions { position: fixed; z-index: 110; right: 0; bottom: 0; left: 0; height: 62px; display: grid; grid-template-columns: repeat(3, 1fr); color: var(--white); background: var(--ink); box-shadow: 0 -8px 22px rgba(32, 33, 31, 0.2); }
  .mobile-actions a, .mobile-actions button { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1px; padding: 4px; color: var(--white); background: transparent; border: 0; border-right: 1px solid rgba(255, 255, 255, 0.15); font-size: 10px; font-weight: 800; text-decoration: none; }
  .mobile-actions span { font-size: 17px; line-height: 1; }
  .order-dialog { padding: 45px 19px 25px; }
  .order-dialog h2 { font-size: 42px; }
  .dialog-options a { grid-template-columns: 1fr 22px; min-height: 72px; }
  .dialog-options b { display: none; }
  .dialog-options span { font-size: 18px; }
}

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