:root {
  --color-blue: #15539a;
  --color-deep-blue: #0b3f84;
  --color-blue-dark: #062a61;
  --color-white: #ffffff;
  --color-light: #f4f4f4;
  --color-soft-blue: #e8eef6;
  --color-ink: #151b22;
  --color-muted: #4d5863;
  --color-line: #d8dde4;
  --color-brunch-teal: #0e5a80;
  --color-brunch-deep: #073d57;
  --color-brunch-gold: #f47b20;
  --color-brunch-cream: #f8f4eb;
  --color-brunch-sky: #dcecf6;
  --font-title: "DIN Condensed", "DIN Neuzeit Grotesk", "Arial Narrow", "Helvetica Neue", sans-serif;
  --font-body: "Nunito Sans", "Avenir Next", "Segoe UI", Arial, sans-serif;
  --header-height: 84px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

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

button {
  font: inherit;
}

[hidden],
.is-filtered-out {
  display: none !important;
}

.svg-sprite {
  height: 0;
  position: absolute;
  width: 0;
}

.site-header {
  background: var(--color-blue);
  color: var(--color-white);
  left: 0;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 30;
}

.header-inner {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: var(--header-height);
  margin: 0 auto;
  max-width: 1320px;
  padding: 0 clamp(18px, 4vw, 52px);
  position: relative;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2.8vw, 42px);
}

.desktop-nav-left {
  justify-content: flex-start;
}

.desktop-nav-right {
  justify-content: flex-end;
}

.brand {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-height: 52px;
  position: relative;
}

.brand img {
  display: none;
}

.brand span {
  color: var(--color-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.nav-link,
.mobile-menu a,
.order-button {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.nav-link {
  align-items: center;
  display: inline-flex;
  min-height: 44px;
  position: relative;
}

.nav-link::after {
  background: var(--color-white);
  bottom: 8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

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

.order-button {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  min-height: 42px;
  min-width: 134px;
  padding: 12px 22px 10px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.order-button:hover,
.order-button:focus-visible {
  background: var(--color-white);
  color: var(--color-blue);
  transform: translateY(-1px);
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  color: var(--color-white);
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 18px;
  width: 44px;
}

.menu-toggle span {
  background: currentColor;
  display: block;
  height: 2px;
  position: absolute;
  transition: opacity 180ms ease, transform 180ms ease;
  width: 19px;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-menu {
  background: var(--color-blue);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: none;
  padding: 12px 24px 26px;
}

.mobile-menu a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  display: block;
  padding: 18px 0 16px;
}

.hero-slider {
  background: var(--color-blue-dark);
  height: calc(85vh - var(--header-height));
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.hero-slide {
  inset: 0;
  opacity: 0;
  position: absolute;
  transform: scale(1.025);
  transition: opacity 800ms ease, transform 1600ms ease;
}

.hero-slide img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.hero-slide::after {
  background:
    linear-gradient(90deg, rgba(6, 42, 97, 0.34), rgba(6, 42, 97, 0.02) 46%, rgba(6, 42, 97, 0.22)),
    linear-gradient(0deg, rgba(6, 42, 97, 0.18), rgba(6, 42, 97, 0.05) 48%, rgba(6, 42, 97, 0.18));
  content: "";
  inset: 0;
  position: absolute;
}

.menu-index-hero .hero-slide::after {
  display: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 26px;
  inset: 50% auto auto 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  width: min(560px, calc(100% - 48px));
  z-index: 3;
}

.hero-logo {
  filter: drop-shadow(0 18px 34px rgba(0, 20, 48, 0.3));
  width: min(430px, 100%);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  justify-content: center;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  min-height: 42px;
  min-width: 132px;
  padding: 12px 24px 10px;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-hero {
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.92);
  color: var(--color-white);
}

.button-hero:hover,
.button-hero:focus-visible {
  background: var(--color-white);
  color: var(--color-blue);
}

.button-outline-blue {
  background: transparent;
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
}

.button-outline-blue:hover,
.button-outline-blue:focus-visible {
  background: var(--color-blue);
  color: var(--color-white);
}

.button-light-outline {
  background: transparent;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  margin: 24px auto 0;
}

.button-light-outline:hover,
.button-light-outline:focus-visible {
  background: var(--color-white);
  color: var(--color-blue);
}

.slider-arrow,
.gallery-arrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(21, 83, 154, 0.18);
  border-radius: 50%;
  color: var(--color-blue);
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  padding: 0;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.slider-arrow:hover,
.slider-arrow:focus-visible,
.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  background: var(--color-blue);
  color: var(--color-white);
}

.slider-arrow svg,
.gallery-arrow svg {
  height: 24px;
  width: 24px;
}

.slider-arrow path,
.gallery-arrow path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.slider-arrow {
  height: 48px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  z-index: 4;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
  transform: translateY(calc(-50% - 1px));
}

.slider-arrow-prev {
  left: clamp(18px, 4vw, 56px);
}

.slider-arrow-next {
  right: clamp(18px, 4vw, 56px);
}

.slider-dots,
.gallery-dots {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.slider-dots {
  bottom: 28px;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 4;
}

.dot {
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--color-white);
  cursor: pointer;
  height: 10px;
  padding: 0;
  transition: background 180ms ease, transform 180ms ease;
  width: 10px;
}

.dot.is-active {
  background: currentColor;
  transform: scale(1.2);
}

.gallery-dots .dot {
  color: var(--color-blue);
}

.text-strip {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-line);
  border-top: 1px solid var(--color-line);
  color: var(--color-blue);
  overflow: hidden;
  position: relative;
}

.text-strip {
  height: 44px;
}

.text-strip::before {
  animation: strip-slide 28s linear infinite;
  content: "FAMILY RESTAURANT  ✦  FAMILY RESTAURANT  ✦  FAMILY RESTAURANT  ✦  FAMILY RESTAURANT  ✦  FAMILY RESTAURANT  ✦  FAMILY RESTAURANT  ✦";
  display: block;
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 44px;
  min-width: 200%;
  white-space: nowrap;
}

@keyframes strip-slide {
  from {
    transform: translateX(0);
  }

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

.welcome-section {
  background: var(--color-white);
}

.center-copy,
.menu-landing-hero {
  margin: 0 auto;
  max-width: 900px;
  padding: clamp(78px, 9vw, 124px) 24px;
  text-align: center;
}

.agave-mark {
  display: block;
  filter: drop-shadow(0 4px 7px rgba(7, 45, 77, 0.16));
  height: auto;
  margin: 0 auto 24px;
  object-fit: contain;
  width: clamp(48px, 5vw, 64px);
}

.agave-light {
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.28));
}

h1,
h2,
h3 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.02;
  margin: 0;
  text-transform: uppercase;
}

h1,
h2 {
  color: var(--color-blue);
  font-size: clamp(2.75rem, 6vw, 5.8rem);
}

h3 {
  color: var(--color-blue);
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
}

p {
  margin: 0;
}

.center-copy p,
.section-copy p,
blockquote p {
  color: var(--color-muted);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  margin: 28px auto 0;
  max-width: 690px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 620px;
}

.media-panel {
  min-height: 620px;
  overflow: hidden;
}

.media-panel img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.content-panel,
.bar-copy-panel,
.video-shell {
  align-items: center;
  display: flex;
  justify-content: center;
}

.panel-light {
  background: var(--color-light);
}

.section-copy {
  max-width: 580px;
  padding: clamp(70px, 8vw, 120px) clamp(26px, 6vw, 84px);
  text-align: center;
}

.section-copy .button-outline-blue {
  margin-top: 34px;
}

.photo-break {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  height: clamp(420px, 46vw, 560px);
  position: relative;
}

.photo-break::after {
  background: linear-gradient(90deg, rgba(6, 42, 97, 0.28), rgba(255, 255, 255, 0.05), rgba(6, 42, 97, 0.18));
  content: "";
  inset: 0;
  position: absolute;
}

.photo-break-one {
  background-image: url("assets/parallax-1.jpg");
}

.photo-break-two {
  background-image: url("assets/parallax-2.jpg");
}

.bar-copy-panel {
  background: var(--color-blue);
  color: var(--color-white);
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.bar-copy-panel h2,
.bar-copy-panel p {
  color: var(--color-white);
}

.bar-copy-panel .section-copy {
  padding-bottom: clamp(54px, 6vw, 78px);
}

.tile-pattern {
  border-top: 8px solid rgba(255, 255, 255, 0.22);
  height: 148px;
  object-fit: cover;
  width: 100%;
}

.video-shell {
  background: var(--color-white);
  padding: clamp(30px, 5vw, 70px);
}

.video-frame {
  aspect-ratio: 4 / 3;
  background: var(--color-soft-blue);
  border: 1px solid var(--color-line);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.video-frame video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.bar-feature .video-shell {
  align-items: stretch;
  background: #000;
  justify-content: stretch;
  min-height: 620px;
  padding: 0;
}

.bar-feature .video-frame {
  aspect-ratio: auto;
  border: 0;
  height: 100%;
  min-height: 100%;
  width: 100%;
}

.play-button {
  align-items: center;
  background: var(--color-blue);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--color-white);
  cursor: pointer;
  display: inline-flex;
  height: 76px;
  inset: 50% auto auto 50%;
  justify-content: center;
  padding: 0;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: background 180ms ease, transform 180ms ease;
  width: 76px;
}

.play-button:hover,
.play-button:focus-visible {
  background: var(--color-blue-dark);
  transform: translate(-50%, -50%) scale(1.04);
}

.play-button.is-hidden {
  display: none;
}

.play-button svg {
  height: 30px;
  margin-left: 4px;
  width: 30px;
}

.play-button path {
  fill: currentColor;
}

blockquote {
  margin: 0;
}

.review-copy h3 {
  margin-top: 22px;
}

.review-carousel {
  margin-top: 18px;
  min-height: 360px;
  position: relative;
}

.review-slide {
  display: none;
}

.review-slide.is-active {
  animation: review-fade 360ms ease;
  display: block;
}

.review-slide blockquote p {
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.72;
}

blockquote cite {
  color: var(--color-blue);
  display: block;
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  margin-top: 28px;
  text-transform: uppercase;
}

.stars {
  color: var(--color-blue);
  display: flex;
  font-size: 1.45rem;
  gap: 5px;
  justify-content: center;
  line-height: 1;
  margin-top: 24px;
}

.review-dots {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.review-dots .dot {
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--color-blue);
  cursor: pointer;
  height: 11px;
  padding: 0;
  width: 11px;
}

.review-dots .dot.is-active {
  background: currentColor;
}

@keyframes review-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-section {
  background: var(--color-white);
  padding: clamp(76px, 9vw, 116px) 0;
}

.gallery-heading {
  margin: 0 auto 42px;
  max-width: var(--content-width);
  padding: 0 24px;
  text-align: center;
}

.gallery-carousel {
  margin: 0 auto;
  max-width: calc(var(--content-width) + 120px);
  padding: 0 60px;
  position: relative;
}

.gallery-viewport {
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 22px;
  transition: transform 440ms ease;
  will-change: transform;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  flex: 0 0 calc((100% - 44px) / 3);
  margin: 0;
  overflow: hidden;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-arrow {
  height: 46px;
  position: absolute;
  top: 45%;
  width: 46px;
  z-index: 2;
}

.gallery-arrow-prev {
  left: 0;
}

.gallery-arrow-next {
  right: 0;
}

.gallery-dots {
  margin-top: 28px;
}

.menu-landing-hero {
  background: var(--color-white);
  padding-bottom: clamp(56px, 7vw, 94px);
}

.menu-logo {
  margin: 0 auto 34px;
  width: min(430px, 90%);
}

.menu-landing-hero .agave-mark {
  margin-bottom: 22px;
}

.menu-index-hero .hero-slider {
  height: calc(78vh - var(--header-height));
  min-height: 560px;
}

.menu-index-overlay {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(0, 20, 48, 0.18);
  gap: 9px;
  inset: auto auto clamp(72px, 8vw, 110px) 50%;
  padding: clamp(18px, 2.7vw, 30px) clamp(20px, 3.4vw, 36px);
  text-align: center;
  transform: translateX(-50%);
  width: min(390px, calc(100% - 42px));
}

.menu-index-overlay::after {
  display: none;
}

.menu-index-overlay .hero-logo {
  filter: drop-shadow(0 10px 20px rgba(0, 20, 48, 0.16));
  width: min(160px, 68%);
}

.menu-overlay-kicker {
  color: var(--color-brunch-gold);
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 1.2vw, 0.98rem);
  font-weight: 900;
  line-height: 1.2;
  margin: 0 auto;
  text-transform: uppercase;
}

.menu-index-overlay h1 {
  color: var(--color-blue);
  font-size: clamp(2.25rem, 4.2vw, 3.6rem);
  line-height: 0.95;
  text-shadow: none;
}

.menu-index-overlay h1::after {
  background: var(--color-brunch-gold);
  content: "";
  display: block;
  height: 3px;
  margin: 16px auto 0;
  width: min(118px, 42%);
}

.menu-overlay-help {
  color: #173d4b;
  font-size: clamp(0.82rem, 1.1vw, 0.96rem);
  line-height: 1.45;
  margin: 0 auto;
  max-width: 320px;
}

.menu-category-list {
  background: var(--color-white);
  display: grid;
  gap: clamp(22px, 3vw, 36px);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin: 0 auto;
  max-width: 1280px;
  padding: clamp(36px, 5vw, 62px) 24px clamp(78px, 9vw, 112px);
}

.category-card {
  background: var(--color-white);
  border-radius: 8px;
  display: grid;
  overflow: hidden;
}

.category-media {
  aspect-ratio: 4 / 3;
  background: var(--color-blue);
  display: block;
  overflow: hidden;
}

.category-media img {
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.08);
  transform-origin: center;
  transition: transform 520ms ease;
  width: 100%;
}

.category-button {
  align-items: center;
  background: var(--color-blue);
  color: var(--color-white);
  display: flex;
  font-family: var(--font-title);
  font-size: clamp(1.08rem, 2vw, 1.58rem);
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  min-height: 52px;
  padding: 13px 18px 11px;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease;
  width: 100%;
}

.category-description {
  color: #173d4b;
  display: block;
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.45;
  min-height: 76px;
  padding: 16px 20px 20px;
  text-align: center;
}

.category-card-no-photo {
  align-content: center;
  background: var(--color-soft-blue);
  border: 1px solid var(--color-line);
  min-height: 260px;
  padding: 26px;
}

.category-no-photo-content {
  align-items: center;
  display: grid;
  gap: 16px;
  justify-items: center;
}

.category-card-agave {
  margin: 0;
  width: 42px;
}

.category-card-no-photo .category-button {
  border-radius: 999px;
  min-height: 50px;
  width: auto;
}

.category-card-no-photo .category-description {
  min-height: 0;
  padding: 0;
}

.category-card:hover .category-media img,
.category-card:focus-visible .category-media img {
  transform: scale(1.12);
}

.category-card:hover .category-button,
.category-card:focus-visible .category-button {
  background: var(--color-blue-dark);
}

.back-menu-link {
  color: var(--color-blue);
  display: inline-flex;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 32px;
  text-transform: uppercase;
}

.back-menu-link:hover,
.back-menu-link:focus-visible {
  color: var(--color-blue-dark);
}

.site-footer {
  background: var(--color-blue);
  color: var(--color-white);
  padding: clamp(58px, 7vw, 86px) 24px;
}

.footer-inner {
  display: grid;
  gap: 36px;
  grid-template-columns: 1.3fr repeat(4, minmax(130px, 1fr));
  margin: 0 auto;
  max-width: var(--content-width);
}

.footer-brand h2 {
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.footer-brand p,
.footer-column p,
.footer-column a {
  color: rgba(255, 255, 255, 0.84);
}

.footer-brand p {
  margin-top: 12px;
}

.footer-column {
  font-style: normal;
}

.footer-column h3 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.footer-column p + p {
  margin-top: 8px;
}

.footer-column a {
  transition: color 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--color-white);
}

.social-links {
  display: grid;
  gap: 8px;
}

.footer-map {
  border: 1px solid rgba(255, 255, 255, 0.22);
  grid-column: 1 / -1;
  min-height: 300px;
  overflow: hidden;
}

.footer-map iframe {
  border: 0;
  display: block;
  height: 320px;
  width: 100%;
}

.footer-credit {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  grid-column: 1 / -1;
  padding-top: 20px;
  text-align: center;
}

.footer-credit a {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.talavera-strip {
  background: var(--color-blue);
  display: block;
  height: 8px;
}

.talavera-landing,
.category-page,
.brunch-page {
  background: var(--color-white);
}

.category-photo-hero {
  background: var(--color-white);
  height: clamp(330px, 45vw, 570px);
  overflow: hidden;
  position: relative;
  scroll-margin-top: var(--header-height);
}

.category-photo-hero img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.category-photo-hero::after {
  display: none;
}

.category-title-block {
  background: var(--color-white);
  position: relative;
  text-align: center;
  z-index: 2;
}

.category-title-block::before {
  display: none;
}

.category-title-block .category-hero-copy {
  margin: 0 auto;
  max-width: 980px;
  padding: clamp(32px, 4.8vw, 58px) 24px clamp(34px, 5vw, 58px);
  position: relative;
  z-index: 1;
}

.category-title-block-standalone .category-hero-copy {
  padding-top: clamp(56px, 7vw, 88px);
}

.category-title-block .agave-mark {
  color: var(--color-brunch-teal);
  margin-bottom: 16px;
}

.category-title-block h1 {
  color: var(--color-blue);
  font-size: clamp(4.2rem, 12vw, 9.6rem);
  text-shadow: none;
}

.hero-subtitle,
.hero-label {
  color: var(--color-brunch-gold);
  font-family: var(--font-title);
  font-size: clamp(1.55rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
  margin-top: 10px;
  text-transform: uppercase;
}

.hero-label {
  color: var(--color-blue);
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  margin: 0 0 10px;
  text-transform: none;
}

.category-title-block .back-menu-link {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding: 12px 18px 10px;
}

.category-intro {
  background: var(--color-white);
  padding: clamp(24px, 4vw, 46px) 24px;
  text-align: center;
}

.category-intro p {
  color: #173d4b;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 400;
  margin: 0 auto;
  max-width: 760px;
}

.category-note,
.item-note {
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.45;
  text-transform: none;
}

.category-note {
  margin-top: 14px;
}

.menu-tools {
  background: var(--color-white);
  padding: clamp(24px, 4vw, 42px) 24px clamp(30px, 5vw, 52px);
}

.menu-tools-inner {
  margin: 0 auto;
  max-width: 1120px;
}

.menu-tools-heading h2 {
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 800;
  line-height: 1.2;
  text-transform: none;
}

.category-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.category-pill {
  align-items: center;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-ink);
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 600;
  justify-content: center;
  line-height: 1;
  min-height: 36px;
  padding: 10px 16px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.category-pill:hover,
.category-pill:focus-visible,
.category-pill.is-active {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: var(--color-white);
}

.menu-search-field {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 18px;
  max-width: 520px;
  position: relative;
}

.menu-search-field input {
  background: var(--color-light);
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--color-ink);
  display: block;
  font: inherit;
  min-height: 48px;
  outline: none;
  padding: 12px 16px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  width: 100%;
}

.menu-search-field input:focus {
  background: var(--color-white);
  border-color: rgba(21, 83, 154, 0.42);
  box-shadow: 0 0 0 4px rgba(21, 83, 154, 0.1);
}

.menu-search-button {
  background: var(--color-blue);
  border: 1px solid var(--color-blue);
  border-radius: 8px;
  color: var(--color-white);
  cursor: pointer;
  font-weight: 600;
  min-height: 48px;
  padding: 12px 18px;
  transition: background 180ms ease, border-color 180ms ease;
}

.menu-search-button:hover,
.menu-search-button:focus-visible {
  background: var(--color-blue-dark);
  border-color: var(--color-blue-dark);
}

.menu-global-results {
  margin-top: 24px;
  max-width: 760px;
}

.menu-global-results h3 {
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 12px;
  text-transform: none;
}

.menu-global-results-list {
  display: grid;
  gap: 10px;
}

.menu-search-result-card,
.menu-search-no-results {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(6, 42, 97, 0.05);
  display: grid;
  gap: 5px;
  padding: 16px 18px;
}

.menu-search-result-card {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.menu-search-result-card:hover,
.menu-search-result-card:focus-visible {
  border-color: rgba(21, 83, 154, 0.38);
  box-shadow: 0 14px 28px rgba(6, 42, 97, 0.1);
  transform: translateY(-1px);
}

.menu-search-result-meta {
  color: var(--color-blue);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
}

.menu-search-result-title {
  color: var(--color-ink);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
}

.menu-search-result-description,
.menu-search-no-results {
  color: var(--color-muted);
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.45;
}

.menu-search-result-price {
  color: var(--color-brunch-gold);
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 4px;
}

.menu-grid-section {
  background: var(--color-light);
  padding: clamp(42px, 6vw, 76px) clamp(18px, 5vw, 56px) clamp(72px, 8vw, 110px);
}

.menu-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  margin: 0 auto;
  max-width: 1240px;
}

.menu-subsection + .menu-subsection {
  margin-top: clamp(54px, 7vw, 86px);
}

.menu-subsection-heading {
  margin: 0 auto clamp(26px, 4vw, 42px);
  max-width: 840px;
  text-align: center;
}

.menu-subsection-heading h2 {
  color: var(--color-blue);
  font-size: clamp(2.8rem, 7vw, 5.6rem);
}

.menu-subsection-heading p {
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  font-weight: 400;
  line-height: 1.45;
  margin-top: 8px;
  text-transform: none;
}

.menu-item-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(6, 42, 97, 0.06);
  display: grid;
  overflow: hidden;
}

.menu-item-card-no-media {
  align-content: stretch;
  min-height: 210px;
}

.menu-item-card-no-media .menu-item-content {
  align-content: start;
  padding: clamp(24px, 4vw, 34px);
}

.menu-item-media {
  aspect-ratio: 4 / 3;
  background: var(--color-soft-blue);
  overflow: hidden;
}

.menu-item-media img,
.menu-item-media video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.menu-item-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}

.item-heading {
  align-items: baseline;
  display: block;
}

.menu-item-title {
  color: var(--color-brunch-teal);
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
}

.menu-item-price {
  color: var(--color-brunch-gold);
  font-family: var(--font-title);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 700;
  line-height: 1;
  margin-top: auto;
  text-align: left;
  white-space: nowrap;
}

.menu-item-description {
  color: #173d4b;
  line-height: 1.55;
}

.item-modifiers {
  color: var(--color-brunch-teal);
  display: grid;
  font-weight: 400;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-warning {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  color: #173d4b;
  font-size: 0.95rem;
  font-weight: 400;
  margin: clamp(38px, 5vw, 64px) auto 0;
  max-width: 980px;
  padding: 22px;
  text-align: center;
}

.menu-empty-state {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  color: var(--color-muted);
  font-weight: 400;
  margin: 0 auto;
  max-width: 640px;
  padding: 24px;
  text-align: center;
}

.category-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: clamp(34px, 5vw, 58px) auto 0;
  max-width: 680px;
}

.category-action-button {
  background: var(--color-white);
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
  min-width: 168px;
}

.menu-tools .category-pill,
.menu-search-button,
.category-action-button {
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.category-action-button:hover,
.category-action-button:focus-visible {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: var(--color-white);
}


.talavera-landing {
  overflow: hidden;
  position: relative;
}

.talavera-landing > * {
  position: relative;
  z-index: 1;
}

.menu-category-list {
  background: var(--color-light);
}

.menu-category-list .category-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  box-shadow: 0 16px 34px rgba(6, 42, 97, 0.08);
}

.menu-category-list .category-button {
  background: var(--color-brunch-teal);
}

.menu-category-list .category-card:hover .category-button,
.menu-category-list .category-card:focus-visible .category-button {
  background: var(--color-brunch-deep);
}

@media (max-width: 1080px) {
  :root {
    --header-height: 74px;
  }

  .desktop-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu.is-open {
    display: block;
  }

  .hero-slider {
    height: 660px;
    min-height: 560px;
  }

  .split-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .bar-feature .bar-copy-panel {
    order: 1;
  }

  .bar-feature .video-shell {
    order: 2;
    min-height: clamp(420px, 64vw, 620px);
  }

  .media-panel {
    min-height: 430px;
  }

  .section-copy {
    max-width: 700px;
  }

  .photo-break {
    background-attachment: scroll;
    height: clamp(340px, 58vw, 480px);
  }

  .gallery-item {
    flex-basis: calc((100% - 22px) / 2);
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-map iframe {
    height: 300px;
  }

  .category-photo-hero {
    height: 500px;
  }

}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .brand span {
    font-size: clamp(1.08rem, 5vw, 1.38rem);
    max-width: calc(100vw - 118px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-slider {
    height: 600px;
    min-height: 600px;
  }

  .hero-overlay {
    gap: 20px;
    width: calc(100% - 38px);
  }

  .hero-logo {
    width: min(340px, 100%);
  }

  .hero-actions {
    flex-direction: column;
    width: min(260px, 100%);
  }

  .button {
    width: 100%;
  }

  .slider-arrow {
    height: 42px;
    width: 42px;
  }

  .center-copy,
  .menu-landing-hero {
    padding: 66px 22px;
  }

  h1,
  h2 {
    font-size: clamp(2.35rem, 14vw, 3.9rem);
  }

  .text-strip::before {
    font-size: 1.15rem;
  }

  .media-panel {
    min-height: 330px;
  }

  .section-copy {
    padding: 60px 22px 68px;
  }

  .tile-pattern {
    height: 112px;
  }

  .video-shell {
    padding: 24px;
  }

  .bar-feature .video-shell {
    min-height: 360px;
    padding: 0;
  }

  .play-button {
    height: 62px;
    width: 62px;
  }

  .photo-break {
    height: 330px;
  }

  .gallery-section {
    padding: 64px 0 76px;
  }

  .gallery-carousel {
    padding: 0 46px;
  }

  .gallery-track {
    gap: 18px;
  }

  .gallery-item {
    flex-basis: 100%;
  }

  .gallery-arrow {
    height: 40px;
    top: 42%;
    width: 40px;
  }

  .menu-category-list {
    gap: 24px;
    padding: 44px 18px 76px;
  }

  .menu-index-overlay {
    bottom: 68px;
    gap: 7px;
    padding: 16px 18px 18px;
    width: min(320px, calc(100% - 36px));
  }

  .menu-index-overlay .hero-logo {
    display: none;
  }

  .menu-index-overlay h1 {
    font-size: clamp(1.95rem, 10vw, 2.65rem);
  }

  .menu-index-overlay h1::after {
    margin-top: 11px;
  }

  .menu-overlay-help {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .category-media {
    aspect-ratio: 4 / 3;
  }

  .category-button {
    min-height: 50px;
  }

  .menu-search-field {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-map {
    min-height: 260px;
  }

  .footer-map iframe {
    height: 260px;
  }

  .category-photo-hero {
    height: 360px;
  }

  .category-title-block .category-hero-copy {
    padding: 42px 18px 54px;
  }

  .category-title-block h1 {
    font-size: clamp(3.4rem, 18vw, 5.8rem);
  }

  .menu-grid-section {
    padding: 38px 16px 72px;
  }

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

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

  .menu-item-price {
    text-align: left;
  }

  .category-bottom-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .talavera-strip {
    height: 8px;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
