
:root {
  --orange: #f15a24;
  --orange-dark: #cb3f13;
  --red: #c1272d;
  --cream: #f5e9d5;
  --paper: #efe1cc;
  --brown: #3b2417;
  --brown-dark: #24130c;
  --black: #111111;
  --gold: #d89137;
  --white: #fffaf0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--brown-dark);
  font-family: var(--font-montserrat), sans-serif;
  overflow-x: hidden;
}

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

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.site-header {
  align-items: center;
  background-color: rgba(248, 238, 220, 0.97);
  background-image:
    radial-gradient(circle at 16px 18px, rgba(76, 42, 25, 0.05) 0 1px, transparent 1.5px),
    linear-gradient(90deg, rgba(255,255,255,.22), transparent 45%, rgba(255,255,255,.15));
  background-size: 34px 34px, 100% 100%;
  display: flex;
  height: 112px;
  padding: 8px clamp(22px, 3vw, 58px);
  position: relative;
  z-index: 50;
}

.site-header::after {
  background: linear-gradient(90deg, transparent, var(--brown), transparent);
  bottom: -2px;
  content: "";
  height: 4px;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
}

.brand {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  z-index: 4;
}

.brand img {
  height: 96px;
  object-fit: contain;
  object-position: center;
  width: auto;
}

.desktop-nav {
  align-items: center;
  bottom: 0;
  display: flex;
  gap: clamp(13px, 1.25vw, 23px);
  justify-content: center;
  padding: 0;
  position: absolute;
  top: 0;
}

.desktop-nav--left {
  justify-content: flex-end;
  right: calc(50% + 96px);
}

.desktop-nav--right {
  justify-content: flex-start;
  left: calc(50% + 96px);
}

.desktop-nav a {
  color: var(--brown-dark);
  font-family: var(--font-barlow), sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
  position: relative;
  text-transform: uppercase;
}

.desktop-nav a::after {
  background: var(--orange);
  bottom: -9px;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scaleX(0);
  transition: transform .2s ease;
  width: 100%;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-left: auto;
  position: relative;
  z-index: 5;
}

.header-menu-link,
.header-reservation-link,
.header-order-link,
.mobile-reservation-link,
.mobile-order-link {
  font-family: var(--font-barlow), sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.header-menu-link {
  border-bottom: 2px solid var(--brown);
  padding: 6px 1px 4px;
  transition: border-color .18s ease, color .18s ease;
}

.header-menu-link:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
}

.header-reservation-link,
.mobile-reservation-link {
  align-items: center;
  border: 2px solid var(--brown);
  color: var(--brown-dark);
  display: inline-flex;
  justify-content: center;
  min-height: 47px;
  padding: 10px 17px;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.header-reservation-link:hover,
.mobile-reservation-link:hover {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
  color: var(--cream);
  transform: translateY(-2px);
}

.header-order-link,
.mobile-order-link {
  align-items: center;
  background: #e84b17;
  border: 1px solid #a9320e;
  border-radius: 2px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.11), 0 3px 0 #8b280b;
  color: #fffaf0;
  display: inline-flex;
  justify-content: center;
  min-height: 47px;
  padding: 12px 18px 11px;
  text-shadow: 0 1px 0 rgba(90,24,6,.35);
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.header-order-link::after,
.mobile-order-link::after {
  border-left: 1px solid rgba(255,255,255,.38);
  content: "\2192";
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  margin-left: 12px;
  padding-left: 12px;
  transition: transform .18s ease;
}

.header-order-link:hover,
.mobile-order-link:hover {
  background: #f15a24;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.16), 0 5px 0 #8b280b, 0 9px 16px rgba(59,36,23,.18);
  transform: translateY(-2px);
}

.header-order-link:hover::after,
.mobile-order-link:hover::after {
  transform: translateX(3px);
}

.header-order-link:active,
.mobile-order-link:active {
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.12), 0 1px 0 #8b280b;
  transform: translateY(2px);
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 2px;
  box-shadow: 0 3px 0 rgba(28,11,4,.4);
  display: inline-flex;
  font-family: var(--font-barlow), sans-serif;
  font-size: 16px;
  font-weight: 700;
  gap: 12px;
  justify-content: center;
  letter-spacing: .065em;
  min-height: 54px;
  overflow: hidden;
  padding: 13px 18px 12px 22px;
  position: relative;
  text-shadow: 0 1px 0 rgba(36,19,12,.2);
  text-transform: uppercase;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.button::before {
  border: 1px solid currentColor;
  border-radius: 1px;
  content: "";
  inset: 3px;
  opacity: .16;
  pointer-events: none;
  position: absolute;
}

.button svg {
  border-left: 1px solid currentColor;
  box-sizing: content-box;
  flex: 0 0 auto;
  margin-left: 2px;
  padding-left: 12px;
  transition: transform .18s ease;
}

.button:hover {
  box-shadow: 0 5px 0 rgba(28,11,4,.42), 0 10px 18px rgba(20,7,2,.16);
  transform: translateY(-2px);
}

.button:hover svg { transform: translateX(3px); }

.button:active {
  box-shadow: 0 1px 0 rgba(28,11,4,.45);
  transform: translateY(2px);
}

.button--primary {
  background: #e84b17;
  border-color: #aa320f;
  box-shadow: 0 3px 0 #852508;
  color: #fffaf0;
}

.button--primary:hover {
  background: #f15a24;
  box-shadow: 0 5px 0 #852508, 0 10px 18px rgba(55,15,3,.22);
}

.button--outline {
  background: rgba(20,8,3,.22);
  border-color: rgba(245,233,213,.78);
  box-shadow: 0 3px 0 rgba(245,233,213,.18);
  color: var(--cream);
}

.button--outline:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--brown-dark);
}

.site-header .button--outline,
.button--dark {
  background: var(--brown-dark);
  border-color: #6a4229;
  box-shadow: 0 3px 0 #100704;
  color: var(--cream);
}

.button--dark:hover {
  background: #4a2b1b;
  border-color: var(--gold);
  box-shadow: 0 5px 0 #100704, 0 10px 18px rgba(20,7,2,.18);
  color: var(--cream);
}

.mobile-menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  --hero-pointer-x: 0;
  --hero-pointer-y: 0;
  align-items: center;
  background-color: #130a06;
  background-image:
    linear-gradient(90deg, rgba(9,4,2,.96) 0%, rgba(12,6,3,.9) 37%, rgba(17,8,4,.58) 69%, rgba(9,4,2,.72) 100%),
    url("../images/hero-real/hero-food-spread.jpg");
  background-position: center 48%;
  background-size: cover;
  color: var(--cream);
  display: flex;
  min-height: 820px;
  overflow: hidden;
  padding: 74px clamp(30px, 6vw, 124px);
  position: relative;
}

.hero::after {
  background:
    radial-gradient(circle at 79% 46%, transparent 0 25%, rgba(6,2,1,.24) 62%),
    linear-gradient(180deg, rgba(5,2,1,.14), transparent 25%, rgba(6,2,1,.25));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(8,3,1,.92) 0%, rgba(11,5,2,.72) 38%, transparent 68%),
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,.008) 3px 4px);
  inset: 0;
  position: absolute;
}

.hero__content {
  max-width: min(900px, 50vw);
  position: relative;
  z-index: 10;
}

.eyebrow {
  color: var(--orange);
  font-family: var(--font-barlow), sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .22em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  color: var(--gold);
  content: "★";
  font-size: 10px;
  margin: 0 11px;
  vertical-align: 2px;
}

.eyebrow::before {
  margin-left: 0;
}

.eyebrow--dark {
  color: var(--brown);
}

.hero .eyebrow {
  font-size: 19px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-rye), serif;
  font-size: clamp(76px, 5.5vw, 106px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .92;
  margin: 0;
  text-shadow: 0 4px 12px rgba(0,0,0,.55);
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--orange);
  display: block;
  font-size: 1.14em;
  margin: 8px 0;
}

.hero__subhead {
  font-family: var(--font-barlow), sans-serif;
  font-size: clamp(22px, 1.55vw, 30px);
  font-weight: 700;
  letter-spacing: .035em;
  line-height: 1.25;
  margin: 28px 0 26px;
  text-transform: uppercase;
}

.hero__buttons {
  display: flex;
  gap: 16px;
}

.hero__buttons .button {
  font-size: 18px;
  min-height: 62px;
  padding: 16px 30px;
}

.hero__buttons .button svg {
  height: 19px;
  width: 19px;
}

.hero-collage {
  bottom: 0;
  pointer-events: none;
  position: absolute;
  right: clamp(-18px, .7vw, 16px);
  top: 0;
  width: min(60vw, 1080px);
  z-index: 5;
}

.hero-collage__rope {
  border: 3px solid rgba(223,178,112,.45);
  border-bottom-color: transparent;
  border-radius: 50%;
  height: 420px;
  position: absolute;
  right: 4%;
  top: 12%;
  transform: rotate(-18deg);
  width: 74%;
}

.hero-collage__rope::after {
  border: 2px solid rgba(223,178,112,.32);
  border-left-color: transparent;
  border-radius: 50%;
  content: "";
  height: 220px;
  position: absolute;
  right: -10%;
  top: 18%;
  width: 54%;
}

.hero-collage__card {
  margin: 0;
  position: absolute;
  transition: transform .28s cubic-bezier(.2,.8,.2,1);
}

.hero-collage__float {
  height: 100%;
  width: 100%;
}

.hero-collage__paper {
  background:
    radial-gradient(circle at 15px 18px, rgba(101,62,29,.09) 0 1px, transparent 1.6px),
    linear-gradient(145deg, #fff4de, #ead4b4 82%);
  box-shadow: 0 22px 38px rgba(0,0,0,.55), 0 1px 0 rgba(255,255,255,.7) inset;
  clip-path: polygon(1% 2%, 11% 0, 23% 2%, 36% .3%, 48% 1.6%, 61% .4%, 74% 1.7%, 87% .5%, 99% 2%, 98.6% 16%, 100% 31%, 98.8% 47%, 100% 64%, 98.6% 80%, 99% 98%, 87% 99.4%, 73% 98.2%, 58% 100%, 43% 98.7%, 29% 99.8%, 15% 98.3%, 1% 99%, 1.7% 82%, .4% 67%, 1.5% 51%, .2% 34%);
  height: 100%;
  padding: 11px 11px 43px;
  position: relative;
  transform: rotate(var(--card-rotation));
  width: 100%;
}

.hero-collage__paper::after {
  background: linear-gradient(115deg, rgba(255,255,255,.13), transparent 35%, rgba(62,30,13,.11));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-collage__image {
  background: #4a2817;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.hero-collage__image::after {
  background: linear-gradient(180deg, transparent 62%, rgba(35,15,7,.2));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-collage__image img {
  filter: saturate(.9) contrast(1.03) sepia(.08);
  object-fit: cover;
}

.hero-collage__card--family img {
  object-position: center 48%;
}

.hero-collage__card--fajitas img {
  object-position: center 34%;
}

.hero-collage__card--toast img {
  object-position: center 52%;
}

.hero-collage__card--karaoke img {
  object-position: center 30%;
}

.hero-collage__paper figcaption {
  bottom: 10px;
  color: #4b2a18;
  font-family: var(--font-yellowtail), cursive;
  font-size: clamp(18px, 1.35vw, 26px);
  left: 14px;
  line-height: 1;
  position: absolute;
  transform: rotate(-1deg);
  z-index: 2;
}

.hero-collage__tape {
  background: rgba(225,186,127,.66);
  box-shadow: 0 2px 7px rgba(0,0,0,.18);
  height: 28px;
  left: 50%;
  position: absolute;
  top: -8px;
  transform: translateX(-50%) rotate(var(--tape-rotation, -4deg));
  width: 82px;
  z-index: 6;
}

.hero-collage__card--family {
  --card-rotation: -5deg;
  height: clamp(330px, 30vw, 500px);
  left: 5%;
  top: 11%;
  transform: translate3d(calc(var(--hero-pointer-x) * -22px), calc(var(--hero-pointer-y) * -16px), 0);
  width: clamp(410px, 36vw, 620px);
  z-index: 2;
}

.hero-collage__card--fajitas {
  --card-rotation: 6deg;
  --tape-rotation: 7deg;
  bottom: 3%;
  height: clamp(330px, 31vw, 510px);
  left: 31%;
  transform: translate3d(calc(var(--hero-pointer-x) * 30px), calc(var(--hero-pointer-y) * 21px), 0);
  width: clamp(250px, 22vw, 370px);
  z-index: 5;
}

.hero-collage__card--toast {
  --card-rotation: 9deg;
  --tape-rotation: -9deg;
  height: clamp(290px, 27vw, 445px);
  right: 0;
  top: 7%;
  transform: translate3d(calc(var(--hero-pointer-x) * 38px), calc(var(--hero-pointer-y) * -28px), 0);
  width: clamp(220px, 20vw, 330px);
  z-index: 4;
}

.hero-collage__card--karaoke {
  --card-rotation: -2.5deg;
  --tape-rotation: 3deg;
  bottom: 7%;
  height: clamp(215px, 19vw, 320px);
  right: 3%;
  transform: translate3d(calc(var(--hero-pointer-x) * -17px), calc(var(--hero-pointer-y) * 25px), 0);
  width: clamp(320px, 28vw, 470px);
  z-index: 3;
}

.hero-collage__seal {
  align-items: center;
  background: #d94b18;
  border: 3px double rgba(255,239,207,.9);
  border-radius: 50%;
  bottom: 4%;
  box-shadow: 0 12px 25px rgba(0,0,0,.45);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  height: 144px;
  justify-content: center;
  left: 7%;
  position: absolute;
  transform: rotate(-10deg) translate3d(calc(var(--hero-pointer-x) * 16px), calc(var(--hero-pointer-y) * -18px), 0);
  width: 144px;
  z-index: 7;
}

.hero-collage__seal svg { height: 22px; margin-bottom: 5px; width: 22px; }
.hero-collage__seal span { font-family: var(--font-barlow), sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.hero-collage__seal strong { font-family: var(--font-rye), serif; font-size: 17px; font-weight: 400; text-transform: uppercase; }

@media (prefers-reduced-motion: no-preference) {
  .hero-collage__card--family .hero-collage__float { animation: hero-float-a 7.4s ease-in-out infinite; }
  .hero-collage__card--fajitas .hero-collage__float { animation: hero-float-b 6.2s ease-in-out -1.8s infinite; }
  .hero-collage__card--toast .hero-collage__float { animation: hero-float-a 5.8s ease-in-out -3.1s infinite reverse; }
  .hero-collage__card--karaoke .hero-collage__float { animation: hero-float-b 8s ease-in-out -4.2s infinite; }
  .hero-collage__seal { animation: hero-seal-pulse 5s ease-in-out infinite; }
}

@keyframes hero-float-a {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -11px, 0); }
}

@keyframes hero-float-b {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(5px, 9px, 0); }
}

@keyframes hero-seal-pulse {
  0%, 100% { scale: 1; }
  50% { scale: 1.045; }
}

.feature-strip {
  background-color: #29160e;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 24px 24px;
  border-bottom: 2px solid #5b351f;
  border-top: 5px solid var(--gold);
  color: var(--cream);
  position: relative;
}

.feature-strip::before {
  background: repeating-linear-gradient(90deg, var(--orange) 0 12px, var(--brown-dark) 12px 22px, var(--gold) 22px 28px);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: -5px;
}

.feature-strip__horseshoe {
  filter: drop-shadow(0 7px 8px rgba(0,0,0,.58));
  height: 88px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: -48px;
  transform: translateX(-50%);
  width: 88px;
  z-index: 4;
}

.feature-strip__horseshoe img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.feature-strip__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: auto;
  max-width: 1460px;
  padding: 26px clamp(20px, 3.5vw, 60px);
}

.feature {
  align-items: center;
  border-right: 1px solid rgba(245,233,213,.19);
  display: flex;
  gap: 17px;
  justify-content: center;
  min-height: 70px;
  padding: 4px 22px;
}

.feature:last-child {
  border: 0;
}

.flavor-ticker {
  background-color: #211009;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    url("../images/footer-walnut-bg.jpg");
  background-position: center;
  background-size: 44px 44px, cover;
  border-bottom: 2px solid #6d4024;
  border-top: 5px solid var(--orange);
  color: var(--cream);
  overflow: hidden;
  padding: 21px 0 20px;
  position: relative;
}

.flavor-ticker::before {
  background: repeating-linear-gradient(90deg, var(--orange) 0 16px, var(--brown-dark) 16px 28px, var(--gold) 28px 34px);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: -5px;
  z-index: 3;
}

.flavor-ticker::after {
  background: linear-gradient(90deg, #211009, transparent 8%, transparent 92%, #211009);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.flavor-ticker__track {
  animation: flavor-ticker-marquee 34s linear infinite;
  display: flex;
  width: max-content;
  will-change: transform;
}

.flavor-ticker__group {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  padding-right: 46px;
}

.flavor-ticker a {
  align-items: center;
  color: var(--cream);
  display: inline-flex;
  font-family: var(--font-rye), serif;
  font-size: clamp(22px, 1.8vw, 32px);
  gap: 24px;
  letter-spacing: .015em;
  line-height: 1;
  margin-right: 46px;
  min-height: 44px;
  padding: 8px 0;
  text-transform: uppercase;
  transition: color .22s ease, transform .22s cubic-bezier(.2,.75,.25,1);
  white-space: nowrap;
}

.flavor-ticker a:nth-child(even) { color: #f47a42; }
.flavor-ticker a > span { color: var(--gold); font-family: Georgia, serif; font-size: .58em; }
.flavor-ticker a:hover { color: #fff6e5; transform: scale(1.08) translateY(-2px); }

@keyframes flavor-ticker-marquee {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}

@media (max-width: 640px) {
  .flavor-ticker { padding: 16px 0 15px; }
  .flavor-ticker__group { padding-right: 30px; }
  .flavor-ticker a { font-size: 21px; gap: 16px; margin-right: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  .flavor-ticker__track { animation: none; }
  .flavor-ticker__group[aria-hidden="true"] { display: none; }
  .flavor-ticker { overflow-x: auto; scrollbar-width: thin; }
}

.feature > svg {
  color: var(--orange);
  flex: 0 0 auto;
  height: 39px;
  stroke-width: 1.6;
  width: 39px;
}

.feature h2 {
  font-family: var(--font-barlow), sans-serif;
  font-size: 17px;
  line-height: 1.03;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.feature p {
  font-size: 11px;
  line-height: 1.25;
  margin: 0;
}

.photo-ticker {
  background-color: #f2e2c8;
  background-image:
    linear-gradient(rgba(255,250,240,.24), rgba(243,226,197,.08)),
    url("../images/specials-parchment-bg.jpg");
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid rgba(83,45,26,.12);
  border-top: 1px solid rgba(83,45,26,.12);
  color: var(--brown);
  overflow: hidden;
  padding: 16px 0 20px;
  position: relative;
}

.photo-ticker::before,
.photo-ticker::after {
  display: none;
}

.photo-ticker__heading {
  margin: 0 auto 38px;
  max-width: 760px;
  padding: 0 24px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.photo-ticker__heading > svg {
  color: var(--orange);
  height: 29px;
  margin-bottom: 8px;
  width: 29px;
}

.photo-ticker__heading p {
  font-size: 13px;
  line-height: 1.75;
  margin: 0 auto 13px;
  max-width: 650px;
  opacity: .8;
}

.photo-ticker__heading h2 {
  font-family: var(--font-rye), serif;
  font-size: clamp(36px, 4vw, 59px);
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
}

.photo-ticker__rows {
  display: grid;
  gap: 0;
  position: relative;
  z-index: 2;
}

.photo-ticker__viewport {
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  overflow: hidden;
  padding: 10px 0;
  width: 100%;
}

.photo-ticker__track {
  display: flex;
  width: max-content;
}

.photo-ticker__group {
  display: flex;
  flex: 0 0 auto;
  gap: 16px;
  padding-right: 16px;
}

.photo-ticker__card {
  aspect-ratio: 1.55 / 1;
  background: #fff8e9;
  border: 5px solid rgba(255,248,233,.94);
  box-shadow: 0 10px 27px rgba(73,43,25,.2);
  flex: 0 0 clamp(300px, 31vw, 470px);
  margin: 0;
  overflow: hidden;
  position: relative;
  transform: scale(1);
  transform-origin: center;
  transition: border-color .28s ease, box-shadow .28s ease, transform .28s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}

.photo-ticker__card::after {
  background: linear-gradient(135deg, transparent 72%, rgba(18,7,3,.22));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.photo-ticker__card img {
  filter: saturate(.92) contrast(1.02);
  object-fit: cover;
  transition: filter .35s ease, transform .65s ease;
}

.photo-ticker__card:hover {
  border-color: #fffaf0;
  box-shadow: 0 18px 40px rgba(73,43,25,.3);
  transform: scale(1.06);
  z-index: 8;
}

.photo-ticker__card:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.025);
}

.photo-ticker__accent {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  padding: 17px;
  position: absolute;
  right: 0;
  z-index: 2;
}

.photo-ticker__accent svg {
  color: var(--orange);
  height: 19px;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,.45));
  width: 19px;
}

.photo-ticker__link {
  align-items: center;
  border-bottom: 1px solid currentColor;
  color: #ecad61;
  display: flex;
  font-family: var(--font-barlow), sans-serif;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: .07em;
  margin: 34px auto 0;
  padding-bottom: 4px;
  position: relative;
  text-transform: uppercase;
  width: max-content;
  z-index: 2;
}

@media (prefers-reduced-motion: no-preference) {
  .photo-ticker__track { animation: photo-ticker-forward 48s linear infinite; }
  .photo-ticker__viewport--reverse .photo-ticker__track { animation-name: photo-ticker-reverse; }
}

@keyframes photo-ticker-forward {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes photo-ticker-reverse {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

.paper-section {
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 22% 30%, rgba(91,53,31,.08) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 78%, rgba(255,255,255,.55) 0 1px, transparent 2px),
    linear-gradient(120deg, rgba(255,255,255,.22), transparent 34%, rgba(111,64,38,.035));
  background-size: 31px 31px, 43px 43px, 100% 100%;
}

.favorites {
  overflow: hidden;
  padding: 58px 0 64px;
  position: relative;
}

.section-heading {
  position: relative;
  text-align: center;
}

.section-heading h2 {
  font-family: var(--font-rye), serif;
  font-size: clamp(34px, 3.4vw, 58px);
  font-weight: 400;
  line-height: 1;
  margin: 6px 0 0;
  text-transform: uppercase;
}

.section-heading p {
  color: var(--orange-dark);
  font-family: var(--font-barlow), sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  margin: 6px 0 0;
  text-transform: uppercase;
}

.section-heading--dark {
  color: var(--brown);
}

.section-heading--light {
  color: var(--cream);
}

.section-heading--left {
  text-align: left;
}

.section-heading--left .ornament {
  justify-content: flex-start;
}

.ornament {
  align-items: center;
  color: var(--orange);
  display: flex;
  gap: 8px;
  justify-content: center;
}

.ornament i {
  background: currentColor;
  height: 1px;
  opacity: .65;
  position: relative;
  width: 48px;
}

.ornament i::after {
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  height: 7px;
  position: absolute;
  right: 5px;
  top: -3px;
  width: 7px;
}

.ornament i:first-child::after {
  left: 5px;
  right: auto;
}

.favorites__menu-link {
  position: absolute;
  right: clamp(34px, 5vw, 86px);
  top: 52px;
}

.favorite-marquee {
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  margin-top: 36px;
  overflow: hidden;
  padding: 15px 0 28px;
  width: 100%;
}

.favorite-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.favorite-group {
  display: flex;
  flex: 0 0 auto;
  gap: 18px;
  padding-right: 18px;
}

.favorite-card {
  background: #2c170f;
  border: 1px solid rgba(84,43,20,.22);
  box-shadow: 0 13px 28px rgba(49,28,18,.2);
  color: var(--cream);
  flex: 0 0 clamp(245px, 19vw, 310px);
  overflow: hidden;
  position: relative;
  transform: translateY(0) rotate(-.25deg);
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s cubic-bezier(.2,.8,.2,1);
  z-index: 1;
}

.favorite-card:nth-child(even) {
  transform: translateY(5px) rotate(.35deg);
}

.favorite-card:hover {
  border-color: var(--orange);
  box-shadow: 0 22px 42px rgba(49,28,18,.32);
  transform: translateY(-10px) rotate(0) scale(1.035);
  z-index: 5;
}

.favorite-card__image {
  aspect-ratio: 1.16 / 1;
  overflow: hidden;
  position: relative;
}

.favorite-card__image::after {
  background: linear-gradient(180deg, rgba(20,8,3,.03) 42%, rgba(28,12,6,.56));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.favorite-card__image img {
  filter: saturate(.98) contrast(1.03);
  object-fit: cover;
  transition: filter .45s ease, transform .65s cubic-bezier(.2,.8,.2,1);
}

.favorite-card:hover .favorite-card__image img {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.085);
}

.favorite-card__image > span {
  background: rgba(36,18,11,.88);
  color: #f3bd72;
  font-family: var(--font-barlow), sans-serif;
  font-size: 10px;
  font-weight: 700;
  left: 12px;
  letter-spacing: .1em;
  padding: 7px 9px;
  position: absolute;
  text-transform: uppercase;
  top: 12px;
  z-index: 2;
}

.favorite-card__copy {
  border-top: 3px solid var(--orange);
  min-height: 104px;
  padding: 18px 18px 20px;
  position: relative;
}

.favorite-card h3 {
  font-family: var(--font-barlow), sans-serif;
  font-size: 21px;
  letter-spacing: .04em;
  margin: 0;
  text-transform: uppercase;
}

.favorite-card p {
  font-size: 10px;
  line-height: 1.45;
  margin: 6px 0 0;
  opacity: .78;
}

@media (prefers-reduced-motion: no-preference) {
  .favorite-track { animation: favorites-marquee 42s linear infinite; }
}

@keyframes favorites-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.story {
  background-color: #1e100a;
  background-image:
    linear-gradient(90deg, rgba(12,5,2,.12), rgba(12,5,2,.28)),
    url("../images/footer-walnut-bg.jpg");
  background-position: center;
  background-size: cover;
  color: var(--cream);
  display: grid;
  grid-template-columns: 47% 53%;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.story::before,
.story::after {
  background: var(--paper);
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 5;
}

.story::before {
  clip-path: polygon(0 0, 100% 0, 100% 38%, 94% 78%, 88% 45%, 81% 82%, 74% 48%, 68% 85%, 61% 42%, 54% 76%, 47% 44%, 40% 81%, 33% 40%, 26% 74%, 19% 43%, 12% 80%, 6% 44%, 0 74%);
  top: 0;
}

.story::after {
  bottom: 0;
  clip-path: polygon(0 58%, 7% 22%, 14% 56%, 21% 18%, 28% 61%, 35% 24%, 42% 58%, 49% 16%, 56% 55%, 63% 20%, 70% 62%, 77% 25%, 84% 58%, 91% 19%, 100% 54%, 100% 100%, 0 100%);
}

.story__photo {
  background-image: url("../images/real/birthday-party.jpg");
  background-position: center 48%;
  background-size: cover;
  min-height: 520px;
  position: relative;
}

.story__photo::after {
  background:
    linear-gradient(90deg, transparent 74%, rgba(19,8,4,.58) 100%),
    linear-gradient(0deg, rgba(18,8,4,.2), transparent 36%);
  content: "";
  inset: 0;
  position: absolute;
}

.story__content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
  padding: 58px clamp(52px, 6vw, 112px) 54px clamp(52px, 5.4vw, 104px);
  position: relative;
}

.story__content::after {
  background-image: url("../images/el-vaquero-logo.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 72% auto;
  border: 3px double rgba(216,145,55,.5);
  border-radius: 50%;
  content: "";
  filter: grayscale(1) sepia(1) brightness(1.75);
  height: clamp(160px, 15vw, 230px);
  mix-blend-mode: screen;
  opacity: .09;
  position: absolute;
  right: clamp(16px, 2.5vw, 48px);
  top: 50%;
  transform: rotate(-10deg);
  translate: 0 -50%;
  width: clamp(160px, 15vw, 230px);
}

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

.story .section-heading {
  max-width: 640px;
  text-align: left;
  width: 100%;
}

.story .section-heading .ornament {
  justify-content: flex-start;
}

.story .section-heading h2 {
  font-size: clamp(46px, 4vw, 66px);
  line-height: .98;
  margin-top: 9px;
}

.story__content > p {
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.72;
  margin: 18px 0 0;
  max-width: 640px;
}

.script-accent {
  color: #f6b35c;
  font-family: var(--font-yellowtail), cursive;
  font-size: clamp(27px, 2vw, 35px);
  font-weight: 400;
  margin: 20px 0 4px;
}

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .72s ease, transform .72s cubic-bezier(.2,.75,.25,1);
  }

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

  .gallery-card[data-reveal] {
    transition-delay: calc((var(--gallery-delay, 0)) * 55ms);
  }
}

.private-events {
  align-items: center;
  background-color: #21110b;
  background-image:
    linear-gradient(90deg, rgba(13,6,3,.34) 0%, rgba(13,6,3,.19) 46%, rgba(13,6,3,.06) 72%, rgba(13,6,3,.19) 100%),
    url("../images/private-events-texture-bg.jpg");
  background-position: center;
  background-size: cover;
  color: var(--cream);
  display: grid;
  gap: clamp(52px, 6vw, 110px);
  grid-template-columns: minmax(390px, .88fr) minmax(440px, 1fr);
  min-height: 770px;
  overflow: hidden;
  padding: 82px clamp(34px, 7vw, 120px);
  position: relative;
}

.private-events::after {
  background: linear-gradient(90deg, transparent, rgba(245,233,213,.34), transparent);
  bottom: 0;
  content: "";
  height: 1px;
  left: 7%;
  pointer-events: none;
  position: absolute;
  right: 7%;
}

.private-events__photos {
  height: 620px;
  margin: 0 auto;
  max-width: 720px;
  position: relative;
  width: 100%;
}

.event-photo {
  background: var(--cream);
  border: 8px solid var(--cream);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  overflow: hidden;
  position: absolute;
  transition: box-shadow .45s ease, transform .45s cubic-bezier(.2,.75,.25,1);
}

.event-photo img {
  object-fit: cover;
  transition: transform .7s ease;
}

.event-photo:hover img {
  transform: scale(1.045);
}

.event-photo:hover { box-shadow: 0 32px 74px rgba(0,0,0,.58); }
.event-photo--main:hover { transform: rotate(-1.5deg) translateY(-8px); }
.event-photo--top:hover { transform: rotate(2deg) translateY(-8px); }
.event-photo--bottom:hover { transform: rotate(.5deg) translateY(-8px); }

.event-photo--main {
  height: 78%;
  left: 0;
  top: 9%;
  transform: rotate(-3.5deg);
  width: 68%;
  z-index: 2;
}

.event-photo--main img {
  object-position: 51% center;
}

.event-photo--main > span {
  background: rgba(28,14,9,.88);
  bottom: 0;
  color: var(--cream);
  font-family: var(--font-barlow), sans-serif;
  font-size: 14px;
  font-weight: 700;
  left: 0;
  letter-spacing: .09em;
  padding: 12px 16px;
  position: absolute;
  right: 0;
  text-transform: uppercase;
  z-index: 2;
}

.event-photo--top {
  height: 39%;
  right: 0;
  top: 1%;
  transform: rotate(4deg);
  width: 43%;
  z-index: 3;
}

.event-photo--bottom {
  bottom: 2%;
  height: 43%;
  right: 1%;
  transform: rotate(2deg);
  width: 47%;
  z-index: 3;
}

.event-photo__seal {
  align-items: center;
  background: var(--orange);
  border: 4px double var(--cream);
  border-radius: 50%;
  bottom: 14%;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  height: 138px;
  justify-content: center;
  left: 47%;
  position: absolute;
  transform: rotate(-10deg);
  width: 138px;
  z-index: 5;
}

.event-photo__seal svg { height: 28px; }
.event-photo__seal strong { font-family: var(--font-rye), serif; font-size: 20px; font-weight: 400; text-transform: uppercase; }
.event-photo__seal span { font-family: var(--font-barlow), sans-serif; font-size: 12px; letter-spacing: .11em; text-transform: uppercase; }

.private-events__copy {
  max-width: 650px;
  position: relative;
  z-index: 4;
}

.private-events__copy h2 {
  font-family: var(--font-rye), serif;
  font-size: clamp(49px, 5vw, 80px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .92;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.private-events__copy h2 span {
  color: var(--orange);
}

.private-events__lead {
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 30px;
  max-width: 610px;
}

.event-type-grid {
  border-bottom: 1px solid rgba(245,233,213,.16);
  border-top: 1px solid rgba(245,233,213,.16);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 30px;
}

.event-type-grid article {
  align-items: center;
  display: flex;
  gap: 13px;
  padding: 18px 13px 18px 0;
}

.event-type-grid article:nth-child(odd) {
  border-right: 1px solid rgba(245,233,213,.16);
}

.event-type-grid article:nth-child(-n+2) {
  border-bottom: 1px solid rgba(245,233,213,.16);
}

.event-type-grid svg {
  color: var(--orange);
  flex: 0 0 auto;
  height: 29px;
  stroke-width: 1.6;
  width: 29px;
}

.event-type-grid h3 {
  font-family: var(--font-barlow), sans-serif;
  font-size: 16px;
  letter-spacing: .035em;
  margin: 0 0 3px;
  text-transform: uppercase;
}

.event-type-grid p {
  font-size: 10px;
  line-height: 1.35;
  margin: 0;
  opacity: .76;
}

.private-events__buttons {
  display: flex;
  gap: 15px;
}

.private-events__note {
  color: #e8b06a;
  font-family: var(--font-yellowtail), cursive;
  font-size: 22px;
  margin: 15px 0 0;
}

.fiesta-marquee {
  background: var(--orange);
  border-bottom: 3px solid #a32e09;
  border-top: 3px solid #ff986a;
  color: #fff;
  font-family: var(--font-rye), serif;
  font-size: 18px;
  overflow: hidden;
  padding: 16px 0 14px;
  text-transform: uppercase;
  white-space: nowrap;
}

.fiesta-marquee > div {
  align-items: center;
  display: flex;
  gap: 24px;
  min-width: max-content;
  width: max-content;
}

.fiesta-marquee svg {
  height: 12px;
  width: 12px;
}

@media (prefers-reduced-motion: no-preference) {
  .fiesta-marquee > div {
    animation: marquee-scroll 25s linear infinite;
  }
}

.gallery {
  padding: 78px clamp(24px, 6vw, 98px) 70px;
  position: relative;
}

.gallery__intro {
  font-size: 13px;
  line-height: 1.7;
  margin: 15px auto 35px;
  max-width: 650px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  gap: 11px;
  grid-auto-flow: dense;
  grid-auto-rows: 175px;
  grid-template-columns: repeat(5, 1fr);
  margin: auto;
  max-width: 1450px;
}

.gallery-card {
  --gallery-delay: 0;
  background: #24130c;
  border: 0;
  cursor: pointer;
  grid-column: span 1;
  grid-row: span 1;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.gallery-card--1 { --gallery-delay: 1; grid-column: span 2; grid-row: span 2; }
.gallery-card--2 { --gallery-delay: 2; grid-row: span 2; }
.gallery-card--3 { --gallery-delay: 3; grid-column: span 2; }
.gallery-card--4 { --gallery-delay: 4; grid-column: span 2; }
.gallery-card--5 { --gallery-delay: 5; grid-row: span 2; }

.gallery-card img {
  object-fit: cover;
  transition: filter .45s ease, transform .7s cubic-bezier(.2,.75,.25,1);
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.06);
}

.gallery-card__overlay {
  align-items: flex-end;
  background: linear-gradient(0deg, rgba(17,7,3,.88), transparent 62%);
  color: var(--cream);
  display: flex;
  inset: 0;
  justify-content: space-between;
  opacity: .8;
  padding: 18px;
  position: absolute;
  transition: opacity .25s ease;
  z-index: 2;
}

.gallery-card:hover .gallery-card__overlay,
.gallery-card:focus-visible .gallery-card__overlay {
  opacity: 1;
}

.gallery-card__overlay strong {
  font-family: var(--font-barlow), sans-serif;
  font-size: 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.gallery-card__overlay svg {
  height: 18px;
  width: 18px;
}

.gallery__footer {
  align-items: center;
  border-bottom: 1px solid rgba(59,36,23,.23);
  border-top: 1px solid rgba(59,36,23,.23);
  display: grid;
  gap: 16px;
  grid-template-columns: auto 1fr auto;
  margin: 38px auto 0;
  max-width: 1120px;
  padding: 22px 0;
}

.gallery__footer > svg {
  color: var(--orange);
  height: 34px;
  width: 34px;
}

.gallery__footer div {
  display: flex;
  flex-direction: column;
}

.gallery__footer strong {
  font-family: var(--font-barlow), sans-serif;
  font-size: 17px;
  text-transform: uppercase;
}

.gallery__footer span {
  font-family: var(--font-yellowtail), cursive;
  font-size: 21px;
}

.weekly-fun {
  background-color: #24110b;
  background-image:
    linear-gradient(90deg, rgba(18,7,3,.08), rgba(18,7,3,.28) 55%, rgba(18,7,3,.48) 100%),
    url("../images/karaoke-cantina-wall-bg.jpg");
  background-position: center;
  background-size: cover;
  color: var(--cream);
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 500px;
  overflow: hidden;
  position: relative;
}

.weekly-fun__photo {
  min-height: 500px;
  position: relative;
}

.weekly-fun__photo::after {
  background: linear-gradient(90deg, transparent 62%, rgba(24,9,4,.96) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.weekly-fun__photo img {
  object-fit: cover;
  object-position: center 42%;
}

.weekly-fun__copy {
  align-self: center;
  max-width: 700px;
  padding: 65px clamp(34px, 7vw, 110px) 65px clamp(25px, 4vw, 65px);
  position: relative;
  z-index: 2;
}

.weekly-fun__copy > svg {
  color: var(--orange);
  height: 42px;
  margin-bottom: 12px;
  width: 42px;
}

.weekly-fun__copy h2 {
  font-family: var(--font-rye), serif;
  font-size: clamp(38px, 4vw, 65px);
  font-weight: 400;
  line-height: .98;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.weekly-fun__copy h2 span {
  color: var(--orange);
}

.weekly-fun__copy > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.weekly-fun__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 27px;
}

.weekly-fun__chips span {
  border: 1px solid rgba(245,233,213,.38);
  font-family: var(--font-barlow), sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 7px 11px;
  text-transform: uppercase;
}

.mobile-action-bar {
  display: none;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 34px 88px;
  position: fixed;
  z-index: 200;
}

.lightbox__backdrop {
  backdrop-filter: blur(10px);
  background: rgba(12,5,2,.92);
  border: 0;
  cursor: zoom-out;
  inset: 0;
  position: absolute;
}

.lightbox figure {
  margin: 0;
  max-width: min(1100px, 82vw);
  position: relative;
  width: 100%;
  z-index: 2;
}

.lightbox__image {
  height: min(76vh, 780px);
  position: relative;
  width: 100%;
}

.lightbox__image img {
  object-fit: contain;
}

.lightbox figcaption {
  align-items: center;
  color: var(--cream);
  display: flex;
  font-family: var(--font-barlow), sans-serif;
  gap: 18px;
  justify-content: center;
  letter-spacing: .06em;
  padding-top: 15px;
  text-transform: uppercase;
}

.lightbox figcaption span { color: var(--orange); }

.lightbox__close,
.lightbox__arrow {
  align-items: center;
  background: rgba(245,233,213,.1);
  border: 1px solid rgba(245,233,213,.42);
  color: var(--cream);
  cursor: pointer;
  display: flex;
  height: 48px;
  justify-content: center;
  position: absolute;
  width: 48px;
  z-index: 4;
}

.lightbox__close { right: 26px; top: 24px; }
.lightbox__arrow { border-radius: 50%; top: calc(50% - 24px); }
.lightbox__arrow--left { left: 25px; }
.lightbox__arrow--right { right: 25px; }

@keyframes hat-float {
  0%, 100% { transform: translateY(0) rotate(-18deg); }
  50% { transform: translateY(-18px) rotate(-8deg); }
}

@keyframes hat-float-two {
  0%, 100% { transform: translateY(0) rotate(14deg) scale(.72); }
  50% { transform: translateY(14px) rotate(4deg) scale(.72); }
}

@keyframes hat-tip {
  0%, 100% { transform: rotate(8deg) scale(.82); }
  45% { transform: translateY(-10px) rotate(-13deg) scale(.82); }
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes sparkle {
  0%, 100% { opacity: .25; transform: rotate(0deg) scale(.8); }
  50% { opacity: .75; transform: rotate(90deg) scale(1.15); }
}

.catering {
  min-height: 440px;
  overflow: hidden;
  position: relative;
}

.catering__image {
  background-image: url("../images/hero-real/hero-food-spread.jpg");
  background-position: 72% center;
  background-size: cover;
  inset: 0;
  position: absolute;
}

.catering__image::after {
  background: linear-gradient(90deg, rgba(239,225,204,.99) 0%, rgba(239,225,204,.96) 35%, rgba(239,225,204,.63) 52%, transparent 68%);
  content: "";
  inset: 0;
  position: absolute;
}

.catering__copy {
  max-width: 670px;
  padding: 72px 40px 72px clamp(34px, 9vw, 150px);
  position: relative;
  z-index: 2;
}

.catering h2 {
  font-family: var(--font-rye), serif;
  font-size: clamp(42px, 4.2vw, 70px);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: .94;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.catering h2 span {
  color: var(--orange-dark);
}

.catering__occasions {
  color: var(--brown);
  font-family: var(--font-barlow), sans-serif;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.catering__copy > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.65;
  max-width: 530px;
}

.catering__copy .button {
  margin-top: 12px;
}

.catering-seal {
  align-items: center;
  background: var(--cream);
  border: 3px double var(--brown);
  border-radius: 50%;
  color: var(--brown);
  display: flex;
  flex-direction: column;
  height: 150px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  width: 150px;
  z-index: 3;
}

.catering-seal svg { color: var(--orange); height: 31px; }
.catering-seal span { font-family: var(--font-rye), serif; font-size: 20px; text-transform: uppercase; }
.catering-seal small { font-family: var(--font-barlow), sans-serif; letter-spacing: .08em; text-transform: uppercase; }

.visit {
  background: #25130c;
  color: var(--cream);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  min-height: 640px;
  overflow: hidden;
  position: relative;
}

.visit__rewards {
  align-items: center;
  background-image:
    linear-gradient(135deg, rgba(22,9,4,.35), rgba(22,9,4,.78)),
    url("../images/footer-walnut-bg.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  padding: clamp(58px, 7vw, 112px) clamp(42px, 6vw, 104px);
  position: relative;
}

.visit__rewards::after {
  background: repeating-linear-gradient(0deg, transparent 0 42px, rgba(245,233,213,.025) 43px);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.visit__rewards-inner {
  max-width: 650px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.visit__rewards-mark {
  align-items: center;
  background: var(--orange);
  border: 4px double var(--cream);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0,0,0,.3);
  color: #fff;
  display: flex;
  height: 68px;
  justify-content: center;
  margin-bottom: 22px;
  transform: rotate(-7deg);
  width: 68px;
}

.visit__rewards-mark svg { height: 30px; width: 30px; }

.visit__rewards .eyebrow { margin: 0 0 12px; }

.visit__rewards h2 {
  font-family: var(--font-rye), serif;
  font-size: clamp(46px, 4.5vw, 74px);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: .98;
  margin: 0;
  text-transform: uppercase;
}

.visit__rewards h2 span { color: var(--orange); }

.visit__rewards-lead {
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.75;
  margin: 24px 0 0;
  max-width: 570px;
  opacity: .9;
}

.visit__rewards-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin: 27px 0 29px;
}

.visit__rewards-perks span {
  align-items: center;
  border: 1px solid rgba(245,233,213,.23);
  color: #f7deba;
  display: inline-flex;
  font-family: var(--font-barlow), sans-serif;
  font-size: 13px;
  font-weight: 700;
  gap: 9px;
  letter-spacing: .055em;
  padding: 10px 13px;
  text-transform: uppercase;
}

.visit__rewards-perks svg {
  color: var(--orange);
  height: 17px;
  width: 17px;
}

.visit__rewards-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.visit__location-line {
  align-items: center;
  border-top: 1px solid rgba(245,233,213,.18);
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr auto;
  margin-top: 38px;
  padding-top: 23px;
}

.visit__location-line > svg {
  color: var(--orange);
  height: 25px;
  width: 25px;
}

.visit__location-line p {
  font-size: 11px;
  line-height: 1.6;
  margin: 0;
}

.visit__location-line strong {
  font-family: var(--font-barlow), sans-serif;
  font-size: 14px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.visit__location-line a {
  align-items: center;
  color: #f5c481;
  display: inline-flex;
  font-family: var(--font-barlow), sans-serif;
  font-size: 14px;
  font-weight: 700;
  min-height: 44px;
  white-space: nowrap;
}

.visit__map { min-height: 640px; position: relative; }

.visit__map iframe {
  border: 0;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.visit__map::after {
  background: linear-gradient(90deg, rgba(28,12,5,.22), transparent 16%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.visit__map-link {
  bottom: 30px;
  position: absolute;
  right: 30px;
  z-index: 3;
}

@media (max-width: 980px) {
  .visit { grid-template-columns: 1fr; }
  .visit__rewards { min-height: 600px; }
  .visit__map { min-height: 500px; }
}

@media (max-width: 600px) {
  .visit__rewards { min-height: 0; padding: 58px 24px 52px; }
  .visit__rewards-mark { height: 58px; width: 58px; }
  .visit__rewards h2 { font-size: clamp(42px, 13vw, 58px); }
  .visit__rewards-actions { align-items: stretch; flex-direction: column; }
  .visit__location-line { align-items: flex-start; grid-template-columns: auto 1fr; }
  .visit__location-line a { grid-column: 2; }
  .visit__map { min-height: 410px; }
  .visit__map-link { bottom: 20px; left: 20px; right: 20px; }
}

.testimonials {
  background-color: #170b07;
  background-image:
    linear-gradient(90deg, rgba(14,5,2,.72), rgba(14,5,2,.52)),
    url("../images/footer-walnut-bg.jpg");
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid rgba(216,145,55,.38);
  border-top: 1px solid rgba(216,145,55,.38);
  color: var(--cream);
  min-height: 0;
  overflow: hidden;
  padding: 44px 0 50px;
  position: relative;
}

.testimonials::before {
  background:
    radial-gradient(circle at 13% 84%, rgba(241,90,36,.14), transparent 28%),
    linear-gradient(90deg, rgba(216,145,55,.7), transparent 18%, transparent 82%, rgba(216,145,55,.7));
  content: "";
  inset: 0;
  position: absolute;
}

.testimonials > * {
  position: relative;
  z-index: 2;
}

.review-showcase__heading { margin-bottom: 28px; padding: 0 24px; }
.review-showcase__heading .ornament { margin-bottom: 7px; }
.review-showcase__heading > p { font-size: 12px; margin-bottom: 7px; }
.review-showcase__heading h2 { font-size: clamp(34px, 3.25vw, 52px); }

.review-card__top b {
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 43%, #fbbc05 0 65%, #ea4335 0 84%, #4285f4 0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.review-ticker {
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  overflow: hidden;
  padding: 5px 0 12px;
  width: 100%;
}

.review-ticker__track {
  display: flex;
  width: max-content;
}

.review-ticker__group {
  display: flex;
  flex: 0 0 auto;
  gap: 14px;
  padding-right: 14px;
}

.review-card {
  background: rgba(39,28,23,.94);
  border: 2px solid rgba(222,179,105,.72);
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.035), 0 18px 34px rgba(0,0,0,.25);
  flex: 0 0 clamp(260px, 22vw, 335px);
  margin: 0;
  min-height: 218px;
  padding: 21px 22px 20px;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.review-card:hover {
  border-color: var(--orange);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), 0 22px 42px rgba(0,0,0,.34);
  transform: translateY(-7px) scale(1.015);
}

.review-card__top { align-items: center; display: grid; gap: 12px; grid-template-columns: auto 1fr auto; }

.review-card__avatar {
  align-items: center;
  background: var(--orange);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-family: var(--font-barlow), sans-serif;
  font-size: 17px;
  font-weight: 700;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.review-card__top > span:nth-child(2) { display: flex; flex-direction: column; }
.review-card cite { font-family: var(--font-barlow), sans-serif; font-size: 15px; font-style: normal; font-weight: 700; text-transform: uppercase; }
.review-card small { font-size: 8px; letter-spacing: .065em; margin-top: 2px; opacity: .6; text-transform: uppercase; }
.review-card__top b { font-size: 22px; }
.review-card .stars { color: #f5bd24; justify-content: flex-start; margin: 17px 0 11px; }
.review-card .stars svg { height: 16px; width: 16px; }
.review-card > p { font-size: 12px; line-height: 1.55; margin: 0; opacity: .91; }

@media (prefers-reduced-motion: no-preference) {
  .review-ticker__track { animation: review-ticker 82s linear infinite; }
}

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

@media (max-width: 600px) {
  .testimonials { padding: 42px 0 48px; }
  .review-showcase__heading { margin-bottom: 25px; }
  .review-showcase__heading h2 { font-size: 34px; }
  .review-ticker__group { gap: 10px; padding-right: 10px; }
  .review-card { border-radius: 16px; flex-basis: 76vw; min-height: 215px; padding: 21px 20px; }
}

.google-review-badge {
  align-items: center;
  background: rgba(255,250,240,.93);
  border: 1px solid rgba(59,36,23,.18);
  box-shadow: 0 8px 28px rgba(62,31,15,.16);
  color: var(--brown);
  display: flex;
  gap: 12px;
  margin: 20px auto 24px;
  max-width: max-content;
  padding: 10px 15px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
  z-index: 2;
}

.google-review-badge:hover {
  box-shadow: 0 12px 34px rgba(62,31,15,.24);
  transform: translateY(-2px);
}

.google-review-badge__g {
  align-items: center;
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 43%, #fbbc05 0 65%, #ea4335 0 84%, #4285f4 0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 31px;
  font-weight: 700;
  justify-content: center;
  width: 30px;
}

.google-review-badge > span:nth-child(2) { display: flex; flex-direction: column; }
.google-review-badge strong { font-family: var(--font-barlow), sans-serif; font-size: 14px; letter-spacing: .02em; text-transform: uppercase; }
.google-review-badge small { font-size: 10px; opacity: .7; }
.google-review-badge > svg { color: var(--orange); height: 17px; width: 17px; }

.testimonial-slider {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 48px minmax(0, 960px) 48px;
  justify-content: center;
  margin: 0 auto;
  max-width: 1120px;
  position: relative;
  z-index: 2;
}

.testimonial-slider__viewport {
  box-shadow: 0 22px 56px rgba(62,31,15,.28);
  cursor: grab;
  overflow: hidden;
  touch-action: pan-y;
}

.testimonial-slider__viewport:active { cursor: grabbing; }

.testimonial-slider__track {
  display: flex;
  transition: transform .65s cubic-bezier(.22,.72,.2,1);
  will-change: transform;
}

.testimonial-slider blockquote {
  background-color: rgba(255,248,234,.97);
  background-image: radial-gradient(circle at 15px 13px, rgba(80,45,27,.07) 0 1px, transparent 1.4px);
  background-size: 28px 28px;
  border: 1px solid rgba(93,57,36,.2);
  border-top: 5px solid var(--orange);
  flex: 0 0 100%;
  margin: 0;
  min-height: 270px;
  padding: 40px clamp(38px, 6vw, 84px) 32px;
  position: relative;
  text-align: center;
}

.testimonial-slider__quote {
  color: rgba(241,90,36,.12);
  font-family: Georgia, serif;
  font-size: 150px;
  left: 28px;
  line-height: .8;
  position: absolute;
  top: 22px;
}

.testimonial-slider blockquote > p {
  font-family: var(--font-montserrat), sans-serif;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.62;
  margin: 20px auto 25px;
  max-width: 760px;
  position: relative;
}

.testimonial-slider__meta {
  align-items: center;
  border-top: 1px solid rgba(59,36,23,.15);
  display: grid;
  gap: 11px;
  grid-template-columns: auto 1fr auto;
  margin: 0 auto;
  max-width: 760px;
  padding-top: 17px;
  text-align: left;
}

.testimonial-slider__avatar {
  align-items: center;
  background: var(--brown);
  border-radius: 50%;
  color: var(--cream);
  display: flex;
  font-family: var(--font-barlow), sans-serif;
  font-size: 17px;
  font-weight: 700;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.testimonial-slider__meta > span:nth-child(2) { display: flex; flex-direction: column; }
.testimonial-slider cite { font-family: var(--font-barlow), sans-serif; font-size: 15px; font-style: normal; font-weight: 700; text-transform: uppercase; }
.testimonial-slider__meta small { font-size: 9px; letter-spacing: .06em; opacity: .65; text-transform: uppercase; }
.testimonial-slider__google { align-items: center; color: #5f6368; display: flex; font-family: Arial, sans-serif; font-size: 12px; gap: 5px; }
.testimonial-slider__google b { color: #4285f4; font-size: 18px; }

.testimonial-slider__arrow {
  align-items: center;
  background: var(--orange);
  border: 0;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  height: 46px;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
  width: 46px;
}

.testimonial-slider__arrow:hover { background: var(--brown); transform: scale(1.08); }
.testimonial-slider__arrow svg { height: 22px; width: 22px; }

.testimonial-slider__dots {
  display: flex;
  gap: 8px;
  grid-column: 2;
  justify-content: center;
}

.testimonial-slider__dots button {
  background: rgba(59,36,23,.3);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 7px;
  padding: 0;
  transition: background .25s ease, width .25s ease;
  width: 7px;
}

.testimonial-slider__dots button.is-active { background: var(--orange); width: 30px; }

.stars {
  color: var(--orange);
  display: flex;
  gap: 3px;
  justify-content: center;
}

.testimonial-grid blockquote p {
  font-size: 13px;
  line-height: 1.6;
  margin: 15px 0;
}

.testimonial-grid cite {
  font-family: var(--font-barlow), sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.final-cta {
  align-items: center;
  background-color: #1c0d08;
  background-image:
    linear-gradient(90deg, rgba(8,3,1,.08), rgba(8,3,1,.48) 26%, rgba(8,3,1,.4) 70%, rgba(8,3,1,.12)),
    url("../images/final-cta-cantina-bg.jpg");
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid rgba(229,162,85,.36);
  border-top: 1px solid rgba(229,162,85,.38);
  color: var(--cream);
  display: flex;
  gap: 44px;
  justify-content: space-between;
  min-height: 225px;
  overflow: hidden;
  padding: 38px clamp(34px, 7vw, 126px) 38px clamp(215px, 18vw, 345px);
  position: relative;
}

.final-cta::after {
  background: linear-gradient(90deg, transparent, rgba(245,233,213,.24), transparent);
  bottom: 14px;
  content: "";
  height: 1px;
  left: 18%;
  position: absolute;
  right: 7%;
}

.final-cta > * {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-family: var(--font-rye), serif;
  font-size: clamp(29px, 2.7vw, 46px);
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 7px;
  max-width: 790px;
  text-shadow: 0 5px 24px rgba(0,0,0,.5);
  text-transform: uppercase;
}

.final-cta .eyebrow { margin-bottom: 9px; }
.final-cta span { color: #e5a255; font-family: var(--font-barlow), sans-serif; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.final-cta__buttons { display: flex; flex: 0 0 auto; gap: 13px; }
.final-cta__buttons .button { backdrop-filter: blur(4px); }
.final-cta__buttons .button--outline { background: rgba(18,8,4,.38); }

footer {
  background-color: #170c08;
  background-image:
    linear-gradient(rgba(10,4,2,.3), rgba(10,4,2,.44)),
    url("../images/footer-walnut-bg.jpg");
  background-position: center top;
  background-size: cover;
  color: var(--cream);
  position: relative;
}

.footer__main {
  display: grid;
  gap: clamp(26px, 3.4vw, 52px);
  grid-template-columns: 1.4fr .8fr .7fr .9fr 1fr;
  margin: auto;
  max-width: 1450px;
  padding: 60px clamp(30px, 6vw, 98px) 42px;
  position: relative;
}

.footer__brand img {
  filter: drop-shadow(0 8px 12px rgba(0,0,0,.38));
  height: 118px;
  object-fit: contain;
  object-position: left;
  width: auto;
}

.footer__brand p,
.footer__column p {
  font-size: 12px;
  line-height: 1.65;
  text-shadow: 0 2px 8px rgba(0,0,0,.7);
}

.footer__column {
  border-left: 1px solid rgba(233,180,109,.2);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: clamp(18px, 2vw, 32px);
}

.footer__column h2 {
  color: #e9b46d;
  font-family: var(--font-barlow), sans-serif;
  font-size: 15px;
  letter-spacing: .08em;
  margin: 12px 0 3px;
  text-transform: uppercase;
}

.footer__column > a {
  font-size: 12px;
  opacity: .9;
  transition: color .2s ease, opacity .2s ease, transform .2s ease;
}

.footer__column > a:hover { color: var(--orange); opacity: 1; transform: translateX(3px); }
.footer__hours a { align-items: center; display: flex; gap: 7px; }

.socials { display: flex; gap: 10px; }
.socials a {
  align-items: center;
  background: var(--cream);
  border-radius: 50%;
  color: var(--brown);
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  height: 44px;
  justify-content: center;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  width: 44px;
}
.socials a:hover { background: var(--orange); color: #fff; transform: translateY(-3px); }
.socials svg { height: 20px; }

.footer__stamp {
  align-items: center;
  align-self: center;
  border: 3px double rgba(233,180,109,.45);
  color: rgba(233,180,109,.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
  padding: 18px;
  text-shadow: 0 3px 12px rgba(0,0,0,.5);
  transform: rotate(-6deg);
}

.footer__stamp span { font-family: var(--font-barlow), sans-serif; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.footer__stamp strong { font-family: var(--font-rye), serif; font-size: 20px; font-weight: 400; text-transform: uppercase; }

.dd-credit {
  align-items: center;
  background: #050505;
  border-top: 1px solid rgba(245,233,213,.55);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: 1300px;
  min-height: 118px;
  padding: 24px 30px;
}

.dd-credit__text {
  align-items: center;
  color: rgba(249,249,249,.9);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 8px 12px;
}

.dd-credit__text a {
  color: #f9f9f9;
  display: inline-block;
  font-family: var(--font-barlow), sans-serif;
  font-weight: 700;
  letter-spacing: .1em;
  position: relative;
  text-transform: uppercase;
  transition: color .25s ease, transform .25s ease, text-shadow .25s ease;
}

.dd-credit__underline {
  background: linear-gradient(90deg, #35c7ff, #7cf6ff, #35c7ff);
  border-radius: 2px;
  bottom: -5px;
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s cubic-bezier(.2,.9,.2,1);
  width: 100%;
}

.dd-credit__text a:hover,
.dd-credit__text a:focus-visible {
  color: #35c7ff;
  text-shadow: 0 0 18px rgba(53,199,255,.45);
  transform: scale(1.06);
}

.dd-credit__text a:hover .dd-credit__underline,
.dd-credit__text a:focus-visible .dd-credit__underline { transform: scaleX(1); }

.dd-credit__logo {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}

.dd-credit__logo img {
  height: 75px;
  object-fit: contain;
  opacity: .95;
  transition: filter .35s ease, opacity .35s ease, transform .35s cubic-bezier(.2,.9,.2,1);
  width: auto;
}

.dd-credit__logo:hover img,
.dd-credit__logo:focus-visible img {
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.25)) drop-shadow(0 0 16px rgba(53,199,255,.4));
  opacity: 1;
  transform: scale(1.1) rotate(-2deg);
}

@media (max-width: 1200px) {
  .site-header { grid-template-columns: 150px 1fr auto; padding-left: 25px; padding-right: 25px; }
  .desktop-nav { gap: 17px; padding: 0 18px; }
  .desktop-nav a { font-size: 13px; }
  .header-menu-button { display: none; }
  .hero { min-height: 560px; }
  .story__content { padding-left: 48px; padding-right: 48px; }
  .story__content::after { display: none; }
  .feature { padding: 4px 12px; }
  .feature h2 { font-size: 15px; }
  .favorites__menu-link { position: static; float: right; margin-top: -52px; }
  .private-events { gap: 42px; grid-template-columns: minmax(360px, .88fr) minmax(420px, 1fr); padding-left: 45px; padding-right: 45px; }
  .private-events__photos { height: 560px; }
  .gallery-grid { grid-auto-rows: 155px; }
  .catering-seal { left: 56%; }
  .visit__content { grid-template-columns: 290px 1fr; }
  .visit__button { grid-column: 2; justify-self: end; margin-top: -90px; }
  .footer__main { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .footer__stamp { display: none; }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: 86px;
    padding: 6px 22px;
  }
  .brand img { height: 74px; }
  .desktop-nav,
  .header-actions { display: none; }
  .mobile-menu-toggle {
    align-items: center;
    background: var(--orange);
    border: 0;
    color: #fff;
    display: flex;
    height: 46px;
    justify-content: center;
    width: 46px;
  }
  .mobile-nav {
    background: var(--cream);
    box-shadow: 0 18px 30px rgba(0,0,0,.2);
    display: flex;
    flex-direction: column;
    gap: 0;
    left: 0;
    opacity: 0;
    padding: 10px 22px 24px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 86px;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .mobile-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-nav > a:not(.button):not(.mobile-order-link) {
    border-bottom: 1px solid rgba(59,36,23,.12);
    font-family: var(--font-barlow), sans-serif;
    font-size: 17px;
    font-weight: 700;
    padding: 13px 2px;
    text-transform: uppercase;
  }
  .mobile-nav .button,
  .mobile-nav .mobile-order-link { margin-top: 16px; text-align: center; }
  .hero { background-position: 60% center; min-height: 580px; padding: 55px 34px; }
  .hero__shade { background: linear-gradient(90deg, rgba(8,3,2,.91), rgba(12,5,3,.73) 56%, rgba(12,5,3,.18)); }
  .hero__content { max-width: 540px; }
  .hero__brand-stamp { display: none; }
  .feature-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .feature-strip__horseshoe { height: 72px; top: -39px; width: 72px; }
  .feature { border-bottom: 1px solid rgba(245,233,213,.15); justify-content: flex-start; }
  .feature:nth-child(even) { border-right: 0; }
  .feature:last-child { grid-column: span 2; justify-content: center; }
  .story { background: #1e100a; grid-template-columns: 1fr; }
  .story__photo {
    background-image: url("../images/real/birthday-party.jpg");
    background-position: center 46%;
    background-size: cover;
    min-height: 390px;
  }
  .story__photo::after { background: linear-gradient(0deg, #1e100a, transparent 55%); }
  .story__content {
    background-image: linear-gradient(rgba(15,6,3,.16), rgba(15,6,3,.25)), url("../images/footer-walnut-bg.jpg");
    background-position: center;
    background-size: cover;
    margin: auto;
    max-width: none;
    padding: 28px 42px 62px;
    width: 100%;
  }
  .story__content::after { display: none; }
  .story .section-heading { max-width: 650px; text-align: left; }
  .story .section-heading .ornament { justify-content: flex-start; }
  .private-events { grid-template-columns: 1fr; padding: 66px 38px; }
  .private-events__photos { height: 580px; max-width: 680px; order: 2; }
  .private-events__copy { margin: auto; max-width: 680px; order: 1; }
  .gallery-grid { grid-auto-rows: 150px; grid-template-columns: repeat(3, 1fr); }
  .gallery-card--1 { grid-column: span 2; }
  .gallery-card--3,
  .gallery-card--4 { grid-column: span 1; }
  .weekly-fun { grid-template-columns: 1fr; }
  .weekly-fun__photo { min-height: 420px; }
  .weekly-fun__photo::after { background: linear-gradient(0deg, rgba(24,9,4,.98), transparent 56%); }
  .weekly-fun__copy { margin: auto; max-width: 720px; padding: 18px 38px 60px; }
  .catering { min-height: 610px; }
  .catering__image { background-position: 63% bottom; }
  .catering__image::after { background: linear-gradient(180deg, rgba(239,225,204,.98) 0%, rgba(239,225,204,.94) 48%, rgba(239,225,204,.15) 78%); }
  .catering__copy { max-width: 650px; padding: 55px 40px; }
  .catering-seal { bottom: 30px; left: 48px; top: auto; transform: rotate(-8deg); }
  .visit { background-position: 58% center; padding-top: 48px; }
  .visit__content { grid-template-columns: 1fr; padding-top: 24px; }
  .visit__details { display: grid; gap: 0 22px; grid-template-columns: repeat(2, 1fr); }
  .visit__details { border-left: 0; border-top: 1px solid rgba(216,145,55,.3); max-width: 700px; padding: 12px 0 0; width: 100%; }
  .location-card:first-of-type { grid-row: span 2; }
  .map-art { min-height: 230px; }
  .visit__button { grid-column: auto; justify-self: center; margin: 0; }
  .testimonial-slider { grid-template-columns: 42px minmax(0, 680px) 42px; }
  .testimonials::before { background: rgba(245,233,213,.82); }
  .final-cta { align-items: flex-start; background-position: 30% center; flex-direction: column; gap: 24px; padding: 52px 38px 48px 190px; }
  .footer__main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer__column { padding-left: 22px; }
  .footer__hours { display: none; }
}

@media (max-width: 640px) {
  .hero { background-position: 66% center; min-height: 610px; padding: 46px 22px; }
  .hero__shade { background: rgba(10,4,2,.68); }
  .hero h1 { font-size: clamp(40px, 12.25vw, 54px); letter-spacing: -.045em; }
  .hero__subhead { font-size: 17px; }
  .hero__buttons { align-items: stretch; flex-direction: column; max-width: 290px; }
  .feature-strip__inner { grid-template-columns: 1fr; padding: 38px 26px 20px; }
  .feature-strip__horseshoe { height: 64px; top: -35px; width: 64px; }
  .feature,
  .feature:nth-child(even) { border-bottom: 1px solid rgba(245,233,213,.15); border-right: 0; justify-content: flex-start; }
  .feature:last-child { grid-column: auto; justify-content: flex-start; }
  .favorites { padding: 44px 24px 48px; }
  .section-heading h2 { font-size: 37px; }
  .favorites__menu-link { display: none; }
  .favorite-marquee { margin-left: -24px; width: calc(100% + 48px); }
  .favorite-group { gap: 12px; padding-right: 12px; }
  .favorite-card { flex-basis: 74vw; }
  .story__photo { min-height: 270px; }
  .story__content { padding: 5px 24px 48px; }
  .story__content::after { display: none; }
  .script-accent { font-size: 24px; }
  .private-events { gap: 28px; min-height: 0; padding: 50px 20px 42px; }
  .private-events__copy h2 { font-size: 46px; }
  .private-events__lead { font-size: 13px; }
  .event-type-grid { grid-template-columns: 1fr; }
  .event-type-grid article,
  .event-type-grid article:nth-child(odd),
  .event-type-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(245,233,213,.16); border-right: 0; }
  .event-type-grid article:last-child { border-bottom: 0; }
  .private-events__buttons { flex-direction: column; }
  .private-events__photos { height: 430px; }
  .event-photo { border-width: 5px; }
  .event-photo--main { height: 72%; top: 10%; width: 70%; }
  .event-photo--top { height: 35%; width: 43%; }
  .event-photo--bottom { height: 40%; width: 47%; }
  .event-photo__seal { bottom: 12%; height: 102px; left: 43%; width: 102px; }
  .event-photo__seal svg { height: 21px; }
  .event-photo__seal strong { font-size: 14px; }
  .event-photo__seal span { font-size: 9px; }
  .fiesta-marquee { font-size: 14px; padding: 12px 0 10px; }
  .gallery { padding: 50px 12px; }
  .gallery__intro { padding: 0 18px; }
  .gallery-grid { gap: 7px; grid-auto-rows: 145px; grid-template-columns: repeat(2, 1fr); }
  .gallery-card--1,
  .gallery-card--2,
  .gallery-card--3,
  .gallery-card--4,
  .gallery-card--5 { grid-column: span 1; grid-row: span 1; }
  .gallery-card:nth-child(1),
  .gallery-card:nth-child(6) { grid-column: span 2; grid-row: span 2; }
  .gallery-card__overlay { padding: 10px; }
  .gallery-card__overlay strong { font-size: 12px; }
  .gallery__footer { align-items: center; grid-template-columns: auto 1fr; margin: 28px 12px 0; }
  .gallery__footer .button { grid-column: span 2; }
  .weekly-fun__photo { min-height: 330px; }
  .weekly-fun__copy { padding: 8px 22px 52px; }
  .weekly-fun__copy h2 { font-size: 38px; }
  .lightbox { padding: 65px 12px 85px; }
  .lightbox figure { max-width: 100%; }
  .lightbox__image { height: 68vh; }
  .lightbox__close { right: 12px; top: 12px; }
  .lightbox__arrow { bottom: 22px; top: auto; }
  .lightbox__arrow--left { left: calc(50% - 62px); }
  .lightbox__arrow--right { right: calc(50% - 62px); }
  .mobile-action-bar {
    align-items: stretch;
    background: #1b0d08;
    border-top: 2px solid var(--orange);
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    left: 0;
    position: fixed;
    right: 0;
    z-index: 80;
  }
  .mobile-action-bar a {
    align-items: center;
    border-right: 1px solid rgba(245,233,213,.17);
    color: var(--cream);
    display: flex;
    flex-direction: column;
    font-family: var(--font-barlow), sans-serif;
    font-size: 11px;
    font-weight: 700;
    gap: 3px;
    justify-content: center;
    min-height: 62px;
    text-transform: uppercase;
  }
  .mobile-action-bar a:last-child { background: var(--orange); border: 0; }
  footer { padding-bottom: 62px; }
  .catering { min-height: 660px; }
  .catering__image { background-position: 68% bottom; }
  .catering__copy { padding: 48px 24px; }
  .catering h2 { font-size: 43px; }
  .catering__occasions { font-size: 13px; line-height: 1.5; }
  .catering-seal { bottom: 22px; height: 118px; left: 24px; width: 118px; }
  .catering-seal span { font-size: 16px; }
  .visit__content { padding: 48px 24px; }
  .visit__heading { padding: 0 20px; }
  .visit__heading h2 { font-size: 43px; }
  .visit__heading p { font-size: 12px; }
  .visit__details { display: block; }
  .map-art { height: 210px; }
  .map-art strong { left: 23%; }
  .map-art__pin { left: 63%; }
  .map-art__label { display: none; }
  .testimonials { padding: 42px 18px 48px; }
  .google-review-badge { margin-top: 17px; }
  .testimonial-slider { column-gap: 8px; grid-template-columns: 38px minmax(0, 1fr) 38px; }
  .testimonial-slider__arrow { height: 36px; width: 36px; }
  .testimonial-slider blockquote { min-height: 330px; padding: 34px 24px 28px; }
  .testimonial-slider blockquote > p { font-size: 15px; }
  .testimonial-slider__meta { grid-template-columns: auto 1fr; }
  .testimonial-slider__google { display: none; }
  .final-cta { background-position: 58% center; min-height: 350px; padding: 56px 24px 48px; }
  .final-cta::before { background: rgba(10,4,2,.64); content: ""; inset: 0; position: absolute; }
  .final-cta h2 { font-size: 35px; }
  .final-cta__buttons { flex-direction: column; width: 100%; }
  .footer__main { grid-template-columns: 1fr 1fr; padding: 40px 24px 30px; }
  .footer__column { border-left: 0; padding-left: 0; }
  .footer__brand { grid-column: span 2; }
  .footer__brand img { height: 95px; }
  .footer__column > a,
  .footer__hours a,
  .footer__local-links a {
    align-items: center;
    display: inline-flex;
    min-height: 44px;
  }
  .dd-credit { margin: 0 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* Interior pages */
.interior-page {
  background: var(--paper);
}

.interior-header {
  position: relative;
}

.page-hero {
  align-items: center;
  background-position: center;
  background-size: cover;
  color: var(--cream);
  display: flex;
  min-height: 535px;
  overflow: hidden;
  padding: 70px clamp(28px, 8vw, 135px);
  position: relative;
}

.page-hero__shade {
  background: linear-gradient(90deg, rgba(16,7,3,.94), rgba(20,8,3,.76) 42%, rgba(15,6,2,.2) 74%, rgba(0,0,0,.08));
  inset: 0;
  position: absolute;
}

.page-hero__content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: var(--font-rye), serif;
  font-size: clamp(56px, 6.2vw, 98px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .9;
  margin: 0 0 24px;
  text-shadow: 0 4px 15px rgba(0,0,0,.55);
  text-transform: uppercase;
}

.page-hero h1 span {
  color: var(--orange);
  display: block;
  font-size: 1.04em;
  margin-top: 8px;
}

.page-hero__content > p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  max-width: 590px;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 28px;
}

.page-hero--about {
  min-height: 535px;
  padding-bottom: 52px;
  padding-top: 52px;
}

.page-hero--about .page-hero__content { max-width: 1040px; }

.page-hero--about h1 {
  font-size: clamp(54px, 4.8vw, 78px);
  line-height: .92;
  white-space: nowrap;
}

.page-hero--about h1 span { white-space: nowrap; }

.page-hero--about .page-hero__content > p:not(.eyebrow) { max-width: 720px; }

.page-hero__rope {
  border: 3px solid rgba(216,145,55,.28);
  border-radius: 50%;
  height: 390px;
  position: absolute;
  right: -180px;
  top: -195px;
  width: 390px;
}

.page-hero__rope::after {
  border: 2px solid rgba(216,145,55,.18);
  border-radius: 50%;
  content: "";
  height: 290px;
  left: 47px;
  position: absolute;
  top: 47px;
  width: 290px;
}

.inner-section-title {
  margin: 0 auto;
  max-width: 780px;
  text-align: center;
}

.inner-section-title > p {
  color: var(--orange-dark);
  font-family: var(--font-barlow), sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .16em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.inner-section-title > p::before,
.inner-section-title > p::after {
  color: var(--gold);
  content: "★";
  font-size: 10px;
  margin: 0 12px;
  vertical-align: 2px;
}

.inner-section-title h2 {
  font-family: var(--font-rye), serif;
  font-size: clamp(39px, 4vw, 64px);
  font-weight: 400;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.inner-section-title > span {
  display: block;
  font-size: 14px;
  line-height: 1.75;
  margin: 18px auto 0;
  max-width: 680px;
}

.inner-section-title--light { color: var(--cream); }
.inner-section-title--light > p { color: var(--orange); }
.interior-final-cta { border-top: 4px solid var(--orange); }

/* Menu */
.menu-intro {
  padding: 72px 30px 52px;
}

.menu-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 44px auto 0;
  max-width: 900px;
}

.menu-stats > div {
  align-items: center;
  border-right: 1px solid rgba(59,36,23,.22);
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 5px 28px;
  text-align: center;
}

.menu-stats > div:last-child { border: 0; }
.menu-stats strong { color: var(--orange); font-family: var(--font-rye), serif; font-size: 35px; font-weight: 400; text-transform: uppercase; }
.menu-stats span { font-family: var(--font-barlow), sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.menu-jump {
  border-bottom: 1px solid rgba(59,36,23,.22);
  border-top: 1px solid rgba(59,36,23,.22);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin: 46px auto 0;
  max-width: 1100px;
  padding: 18px;
}

.menu-jump a {
  align-items: center;
  display: inline-flex;
  font-family: var(--font-barlow), sans-serif;
  font-size: 14px;
  font-weight: 700;
  min-height: 44px;
  padding: 9px 16px;
  text-transform: uppercase;
}

.menu-jump a:hover { background: var(--brown); color: var(--cream); }
.menu-categories { padding: 28px clamp(26px, 7vw, 120px) 85px; }
.menu-category { align-items: stretch; display: grid; grid-template-columns: minmax(330px, .82fr) 1.18fr; margin: 0 auto 54px; max-width: 1250px; min-height: 480px; scroll-margin-top: 40px; }
.menu-category--reverse { grid-template-columns: 1.18fr minmax(330px, .82fr); }
.menu-category--reverse .menu-category__image { grid-column: 2; grid-row: 1; }
.menu-category__image { min-height: 480px; overflow: hidden; position: relative; }
.menu-category__image::after { background: linear-gradient(0deg, rgba(24,10,4,.78), transparent 45%); content: ""; inset: 0; position: absolute; z-index: 1; }
.menu-category__image img { object-fit: cover; transition: transform .7s ease; }
.menu-category:hover .menu-category__image img { transform: scale(1.035); }
.menu-category__image > span { align-items: center; bottom: 22px; color: var(--cream); display: flex; font-family: var(--font-barlow), sans-serif; font-size: 13px; font-weight: 700; gap: 8px; left: 24px; letter-spacing: .08em; position: absolute; text-transform: uppercase; z-index: 2; }
.menu-category__image > span svg { color: var(--orange); height: 18px; width: 18px; }
.menu-category__content { background: #fff8eb; border: 1px solid rgba(59,36,23,.15); padding: 46px clamp(28px, 5vw, 70px); }
.menu-category__content > p { color: var(--orange-dark); font-family: var(--font-barlow), sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .16em; margin: 0 0 7px; text-transform: uppercase; }
.menu-category__content > h2 { font-family: var(--font-rye), serif; font-size: clamp(35px, 3.2vw, 51px); font-weight: 400; margin: 0 0 28px; text-transform: uppercase; }
.menu-item-list { display: flex; flex-direction: column; gap: 17px; }
.menu-item { display: grid; gap: 7px 12px; grid-template-columns: auto 1fr; }
.menu-item h3 { font-family: var(--font-barlow), sans-serif; font-size: 18px; letter-spacing: .05em; margin: 0; text-transform: uppercase; }
.menu-item > span { border-bottom: 1px dotted rgba(59,36,23,.4); margin-bottom: 5px; }
.menu-item p { font-size: 11px; grid-column: span 2; line-height: 1.55; margin: 0; opacity: .75; }
.menu-note { align-items: center; background: #26140d; color: var(--cream); display: grid; gap: 28px; grid-template-columns: auto 1fr auto; padding: 45px clamp(30px, 9vw, 150px); }
.menu-note > svg { color: var(--orange); height: 48px; width: 48px; }
.menu-note h2 { font-family: var(--font-rye), serif; font-size: 29px; font-weight: 400; margin: 0 0 7px; text-transform: uppercase; }
.menu-note p { font-size: 12px; line-height: 1.6; margin: 0; opacity: .78; }

/* About */
.about-story { align-items: center; display: grid; gap: clamp(50px, 7vw, 110px); grid-template-columns: .86fr 1.14fr; padding: 90px clamp(30px, 8vw, 135px); }
.about-story__copy .inner-section-title { margin-left: 0; text-align: left; }
.about-story__copy .inner-section-title > p::before { display: none; }
.about-story__copy .inner-section-title h2 { transition: color .35s ease, letter-spacing .4s ease, transform .4s cubic-bezier(.2,.8,.2,1); }
.about-story__copy .inner-section-title > p { transition: color .3s ease, transform .35s cubic-bezier(.2,.8,.2,1); }
.about-story__lead { font-size: 19px !important; font-weight: 600; }
.about-story__copy > p { font-size: 13px; line-height: 1.85; margin: 18px 0; position: relative; transition: color .3s ease, opacity .3s ease, transform .35s cubic-bezier(.2,.8,.2,1); }
.about-story__copy .script-accent { display: block; transform-origin: left center; transition: color .3s ease, transform .4s cubic-bezier(.2,.8,.2,1); }
.about-story__photos { height: 590px; position: relative; }
.about-story__photo { border: 8px solid #fff8eb; box-shadow: 0 18px 45px rgba(49,27,17,.28); overflow: hidden; position: absolute; transition: box-shadow .45s ease, filter .4s ease, transform .5s cubic-bezier(.2,.8,.2,1); }
.about-story__photo::after { background: linear-gradient(115deg, transparent 32%, rgba(255,248,235,.2) 48%, transparent 64%); content: ""; inset: 0; pointer-events: none; position: absolute; transform: translateX(-130%); transition: transform .8s ease; }
.about-story__photo img { object-fit: cover; transition: filter .45s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
.about-story__photo--large { height: 77%; left: 0; top: 5%; transform: rotate(-2deg); width: 80%; }
.about-story__photo--small { bottom: 0; height: 45%; right: 0; transform: rotate(4deg); width: 47%; }
.about-story__year { align-items: center; background: var(--orange); border: 4px double var(--cream); border-radius: 50%; box-shadow: 0 12px 28px rgba(71,32,14,.24); color: var(--cream); display: flex; flex-direction: column; height: 150px; justify-content: center; left: 4%; position: absolute; top: 66%; transform: rotate(-8deg); transition: background-color .35s ease, box-shadow .4s ease, transform .45s cubic-bezier(.2,.8,.2,1); width: 150px; z-index: 3; }
.about-story__year span { font-family: var(--font-barlow), sans-serif; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.about-story__year strong { font-family: var(--font-rye), serif; font-size: 20px; font-weight: 400; text-transform: uppercase; }

@media (hover: hover) {
  .about-story__copy:hover .inner-section-title h2 { color: var(--orange-dark); letter-spacing: .018em; transform: translateX(7px); }
  .about-story__copy:hover .inner-section-title > p { color: var(--orange); transform: translateX(4px); }
  .about-story__copy > p:hover { color: var(--orange-dark); transform: translateX(7px); }
  .about-story__copy .script-accent:hover { color: var(--orange-dark); transform: rotate(-1deg) scale(1.035); }
  .about-story__photos:hover .about-story__photo:not(:hover) { filter: saturate(.9); }
  .about-story__photo:hover { box-shadow: 0 28px 60px rgba(49,27,17,.38); z-index: 5; }
  .about-story__photo--large:hover { transform: translateY(-10px) rotate(-.7deg) scale(1.015); }
  .about-story__photo--small:hover { transform: translate(-5px,-10px) rotate(2deg) scale(1.025); }
  .about-story__photo:hover::after { transform: translateX(130%); }
  .about-story__photo:hover img { filter: saturate(1.08) contrast(1.02); transform: scale(1.055); }
  .about-story__year:hover { background: var(--orange-dark); box-shadow: 0 20px 38px rgba(71,32,14,.34); transform: translateY(-9px) rotate(-3deg) scale(1.07); z-index: 6; }
}

@media (prefers-reduced-motion: reduce) {
  .about-story__copy .inner-section-title h2,
  .about-story__copy .inner-section-title > p,
  .about-story__copy > p,
  .about-story__copy .script-accent,
  .about-story__photo,
  .about-story__photo::after,
  .about-story__photo img,
  .about-story__year,
  .values-grid article,
  .values-grid article::after,
  .values-grid svg { transition-duration: .01ms; }
  .about-story__copy:hover .inner-section-title h2,
  .about-story__copy:hover .inner-section-title > p,
  .about-story__copy > p:hover,
  .about-story__copy .script-accent:hover,
  .about-story__photo--large:hover,
  .about-story__photo--small:hover,
  .about-story__photo:hover img,
  .about-story__year:hover,
  .values-grid article:hover,
  .values-grid article:hover svg { transform: none; }
}
.values-section {
  background-color: #1d0e08;
  background-image: linear-gradient(180deg, rgba(18,7,3,.32), rgba(18,7,3,.58)), url("../images/about-values-vaquero-bg.jpg");
  background-position: center;
  background-size: cover;
  color: var(--cream);
  isolation: isolate;
  overflow: hidden;
  padding: 82px clamp(30px, 8vw, 135px) 92px;
  position: relative;
}
.values-section::before { background: linear-gradient(90deg, var(--orange), var(--gold), var(--orange)); content: ""; height: 3px; inset: 0 0 auto; opacity: .8; position: absolute; }
.values-section .inner-section-title { filter: drop-shadow(0 3px 14px rgba(0,0,0,.7)); }
.values-grid { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); margin: 45px auto 0; max-width: 1160px; }
.values-grid article { backdrop-filter: blur(3px); background: linear-gradient(145deg, rgba(39,18,10,.76), rgba(23,10,5,.88)); border: 1px solid rgba(223,163,88,.33); box-shadow: 0 18px 40px rgba(0,0,0,.24), inset 0 1px rgba(255,255,255,.04); min-height: 250px; padding: 38px 32px; position: relative; text-align: center; transition: border-color .35s ease, box-shadow .4s ease, transform .4s cubic-bezier(.2,.8,.2,1); }
.values-grid article::after { background: linear-gradient(90deg, transparent, var(--orange), transparent); bottom: -1px; content: ""; height: 3px; left: 12%; position: absolute; transform: scaleX(0); transition: transform .45s cubic-bezier(.2,.8,.2,1); width: 76%; }
.values-grid svg { color: var(--orange); filter: drop-shadow(0 5px 12px rgba(241,90,36,.23)); height: 43px; transition: color .3s ease, transform .45s cubic-bezier(.2,.8,.2,1); width: 43px; }
.values-grid h3 { font-family: var(--font-barlow), sans-serif; font-size: 22px; letter-spacing: .05em; margin: 22px 0 10px; text-shadow: 0 2px 9px rgba(0,0,0,.55); text-transform: uppercase; }
.values-grid p { font-size: 12px; line-height: 1.7; margin: 0; opacity: .78; }

@media (hover: hover) {
  .values-grid article:hover { border-color: rgba(241,90,36,.66); box-shadow: 0 26px 55px rgba(0,0,0,.38), inset 0 1px rgba(255,255,255,.06); transform: translateY(-8px); }
  .values-grid article:hover::after { transform: scaleX(1); }
  .values-grid article:hover svg { color: var(--gold); transform: translateY(-4px) rotate(-6deg) scale(1.08); }
  .values-grid article:nth-child(even):hover svg { transform: translateY(-4px) rotate(6deg) scale(1.08); }
}
.about-community { display: grid; grid-template-columns: 52% 48%; min-height: 570px; }
.about-community__image { min-height: 570px; position: relative; }
.about-community__image::after { background: linear-gradient(90deg, transparent 62%, var(--paper)); content: ""; inset: 0; position: absolute; }
.about-community__image img { object-fit: cover; }
.about-community__copy { align-self: center; padding: 65px clamp(32px, 8vw, 115px) 65px clamp(25px, 4vw, 65px); }
.about-community__copy > svg { color: var(--orange); height: 38px; width: 38px; }
.about-community__copy h2 { font-family: var(--font-rye), serif; font-size: clamp(37px, 3.8vw, 59px); font-weight: 400; line-height: 1.03; margin: 0 0 20px; text-transform: uppercase; }
.about-community__copy > p:not(.eyebrow) { font-size: 13px; line-height: 1.85; }
.about-community__chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 24px 0; }
.about-community__chips span { align-items: center; border: 1px solid rgba(59,36,23,.3); display: flex; font-family: var(--font-barlow), sans-serif; font-size: 12px; font-weight: 700; gap: 7px; padding: 9px 12px; text-transform: uppercase; }
.about-community__chips svg { color: var(--orange); height: 16px; width: 16px; }

/* Private events */
.event-kinds { padding: 80px clamp(28px, 8vw, 130px); }
.event-kinds__grid { display: grid; gap: 17px; grid-template-columns: repeat(4, 1fr); margin: 46px auto 0; max-width: 1250px; }
.event-kinds__grid article { background: #fff8eb; border-bottom: 4px solid var(--orange); box-shadow: 0 13px 34px rgba(59,36,23,.14); min-height: 390px; overflow: hidden; position: relative; transition: border-color .35s ease, box-shadow .4s ease, transform .42s cubic-bezier(.2,.8,.2,1); }
.event-kinds__image { height: 205px; overflow: hidden; position: relative; }
.event-kinds__image::after { background: linear-gradient(0deg, rgba(31,13,6,.5), transparent 55%); content: ""; inset: 0; position: absolute; transition: opacity .35s ease; }
.event-kinds__image img { object-fit: cover; transition: filter .45s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
.event-kinds__content { min-height: 181px; padding: 32px 26px 28px; position: relative; }
.event-kinds__content > span { align-items: center; background: var(--orange); border: 4px solid #fff8eb; border-radius: 50%; color: var(--cream); display: flex; height: 58px; justify-content: center; left: 24px; position: absolute; top: -31px; transition: background-color .35s ease, transform .45s cubic-bezier(.2,.8,.2,1); width: 58px; z-index: 2; }
.event-kinds__grid svg { height: 27px; width: 27px; }
.event-kinds__grid h3 { font-family: var(--font-barlow), sans-serif; font-size: 21px; margin: 14px 0 9px; text-transform: uppercase; transition: color .3s ease, transform .35s ease; }
.event-kinds__grid p { font-size: 12px; line-height: 1.7; margin: 0; }

@media (hover: hover) {
  .event-kinds__grid article:hover { border-color: var(--gold); box-shadow: 0 24px 50px rgba(59,36,23,.24); transform: translateY(-9px); }
  .event-kinds__grid article:hover .event-kinds__image::after { opacity: .55; }
  .event-kinds__grid article:hover .event-kinds__image img { filter: saturate(1.08) contrast(1.03); transform: scale(1.075); }
  .event-kinds__grid article:hover .event-kinds__content > span { background: var(--orange-dark); transform: translateY(-5px) rotate(-9deg) scale(1.08); }
  .event-kinds__grid article:nth-child(even):hover .event-kinds__content > span { transform: translateY(-5px) rotate(9deg) scale(1.08); }
  .event-kinds__grid article:hover h3 { color: var(--orange-dark); transform: translateX(4px); }
}

@media (prefers-reduced-motion: reduce) {
  .event-kinds__grid article,
  .event-kinds__image::after,
  .event-kinds__image img,
  .event-kinds__content > span,
  .event-kinds__grid h3 { transition-duration: .01ms; }
  .event-kinds__grid article:hover,
  .event-kinds__grid article:hover .event-kinds__image img,
  .event-kinds__grid article:hover .event-kinds__content > span,
  .event-kinds__grid article:nth-child(even):hover .event-kinds__content > span,
  .event-kinds__grid article:hover h3 { transform: none; }
}
.event-feature { align-items: center; background: #1d0e09; color: var(--cream); display: grid; gap: clamp(45px, 7vw, 105px); grid-template-columns: 1fr .9fr; min-height: 690px; overflow: hidden; padding: 75px clamp(32px, 8vw, 135px); }
.event-feature__photos { height: 550px; position: relative; }
.event-feature__photos > div { border: 7px solid var(--cream); box-shadow: 0 20px 55px rgba(0,0,0,.42); overflow: hidden; position: absolute; transition: box-shadow .45s ease, filter .4s ease, transform .52s cubic-bezier(.2,.8,.2,1); }
.event-feature__photos > div::after { background: linear-gradient(115deg, transparent 32%, rgba(255,248,235,.2) 48%, transparent 64%); content: ""; inset: 0; pointer-events: none; position: absolute; transform: translateX(-135%); transition: transform .8s ease; }
.event-feature__photos > div:first-child { height: 82%; left: 0; top: 3%; transform: rotate(-4deg); width: 63%; }
.event-feature__photos > div:nth-child(2) { bottom: 1%; height: 54%; right: 0; transform: rotate(4deg); width: 51%; }
.event-feature__photos img { object-fit: cover; transition: filter .45s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
.event-feature__photos > span { align-items: center; background: var(--orange); border: 4px double var(--cream); border-radius: 50%; box-shadow: 0 14px 30px rgba(0,0,0,.28); color: var(--cream); display: flex; flex-direction: column; font-family: var(--font-rye), serif; font-size: 18px; height: 130px; justify-content: center; left: 48%; position: absolute; top: 11%; transform: rotate(8deg); text-align: center; text-transform: uppercase; transition: background-color .35s ease, box-shadow .4s ease, transform .46s cubic-bezier(.2,.8,.2,1); width: 130px; z-index: 3; }
.event-feature__photos > span svg { height: 25px; margin-bottom: 5px; }

@media (hover: hover) {
  .event-feature__photos:hover > div:not(:hover) { filter: brightness(.88) saturate(.9); }
  .event-feature__photos > div:hover { box-shadow: 0 30px 68px rgba(0,0,0,.58); z-index: 5; }
  .event-feature__photos > div:first-child:hover { transform: translateY(-12px) rotate(-1.5deg) scale(1.018); }
  .event-feature__photos > div:nth-child(2):hover { transform: translate(-7px,-12px) rotate(1.5deg) scale(1.028); }
  .event-feature__photos > div:hover::after { transform: translateX(135%); }
  .event-feature__photos > div:hover img { filter: saturate(1.1) contrast(1.025); transform: scale(1.06); }
  .event-feature__photos > span:hover { background: var(--orange-dark); box-shadow: 0 22px 40px rgba(0,0,0,.4); transform: translateY(-9px) rotate(3deg) scale(1.075); z-index: 6; }
  .event-feature__photos > span:hover svg { animation: fiesta-pop .55s ease both; }
}

@keyframes fiesta-pop {
  0%, 100% { transform: rotate(0) scale(1); }
  40% { transform: rotate(-12deg) scale(1.2); }
  70% { transform: rotate(8deg) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .event-feature__photos > div,
  .event-feature__photos > div::after,
  .event-feature__photos img,
  .event-feature__photos > span { transition-duration: .01ms; }
  .event-feature__photos > div:first-child:hover,
  .event-feature__photos > div:nth-child(2):hover,
  .event-feature__photos > div:hover img,
  .event-feature__photos > span:hover { transform: none; }
  .event-feature__photos > span:hover svg { animation: none; }
}
.event-feature__copy h2 { font-family: var(--font-rye), serif; font-size: clamp(43px, 4.5vw, 70px); font-weight: 400; line-height: .98; margin: 0 0 22px; text-transform: uppercase; }
.event-feature__copy h2 span { color: var(--orange); }
.event-feature__copy > p:not(.eyebrow) { font-size: 13px; line-height: 1.8; }
.event-feature__copy ul { display: grid; gap: 10px; list-style: none; margin: 24px 0 30px; padding: 0; }
.event-feature__copy li { font-family: var(--font-barlow), sans-serif; font-size: 15px; font-weight: 700; text-transform: uppercase; }
.event-feature__copy li::before { color: var(--orange); content: "★"; font-size: 9px; margin-right: 10px; }
.event-steps { padding: 105px clamp(30px, 8vw, 135px) 115px; }
.event-steps__layout { display: grid; gap: clamp(55px, 8vw, 125px); grid-template-columns: minmax(320px,.72fr) minmax(560px,1.28fr); margin: auto; max-width: 1320px; }
.event-steps__intro { align-self: start; padding-top: 45px; position: sticky; top: 145px; }
.event-steps__intro .inner-section-title { margin-left: 0; text-align: left; }
.event-steps__intro .inner-section-title > p::before { display: none; }
.event-steps__intro > p { font-size: 13px; line-height: 1.8; margin: 25px 0 28px; max-width: 430px; }
.event-steps__intro > span { align-items: center; color: var(--orange-dark); display: flex; font-family: var(--font-barlow), sans-serif; font-size: 12px; font-weight: 700; gap: 9px; letter-spacing: .09em; text-transform: uppercase; }
.event-steps__intro > span svg { height: 16px; transform: rotate(90deg); width: 16px; }
.event-timeline { --timeline-progress: 0; min-height: 1160px; padding: 25px 0 0; position: relative; }
.event-timeline__rail { background: rgba(59,36,23,.16); bottom: 150px; left: 50%; overflow: hidden; position: absolute; top: 40px; transform: translateX(-50%); width: 3px; }
.event-timeline__rail > span { background: linear-gradient(180deg, var(--orange), var(--gold)); inset: 0; position: absolute; transform: scaleY(var(--timeline-progress)); transform-origin: top; transition: transform .08s linear; }
.event-timeline__step { align-items: center; display: flex; min-height: 330px; position: relative; }
.event-timeline__marker { align-items: center; background: var(--paper); border: 2px solid var(--orange); border-radius: 50%; box-shadow: 0 0 0 8px rgba(245,233,213,.92), 0 9px 24px rgba(59,36,23,.16); display: flex; height: 68px; justify-content: center; left: 50%; position: absolute; top: 50%; transform: translate(-50%,-50%); transition: background-color .4s ease, box-shadow .4s ease, transform .55s cubic-bezier(.2,.8,.2,1); width: 68px; z-index: 3; }
.event-timeline__marker span { color: var(--orange); font-family: var(--font-rye), serif; font-size: 22px; transition: color .35s ease, transform .45s ease; }
.event-timeline__card { background: rgba(255,248,235,.94); border: 1px solid rgba(59,36,23,.15); box-shadow: 0 16px 38px rgba(59,36,23,.13); min-height: 225px; padding: 29px 28px 30px; position: relative; transition: border-color .4s ease, box-shadow .45s ease, opacity .65s ease, transform .65s cubic-bezier(.2,.8,.2,1); width: calc(50% - 52px); }
.event-timeline__card::after { background: linear-gradient(90deg, var(--gold), var(--orange)); bottom: 0; content: ""; height: 4px; left: 0; position: absolute; transform: scaleX(.22); transform-origin: left; transition: transform .45s ease; width: 100%; }
.event-timeline__step:nth-of-type(odd) .event-timeline__card { margin-right: auto; text-align: right; }
.event-timeline__step:nth-of-type(even) .event-timeline__card { margin-left: auto; }
.event-timeline__card > svg { color: var(--orange); height: 31px; margin-bottom: 18px; transition: transform .45s cubic-bezier(.2,.8,.2,1); width: 31px; }
.event-timeline__step:nth-of-type(odd) .event-timeline__card > svg { margin-left: auto; }
.event-timeline__card > p { color: var(--orange-dark); font-family: var(--font-barlow), sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .14em; margin: 0 0 6px; text-transform: uppercase; }
.event-timeline__card h3 { font-family: var(--font-barlow), sans-serif; font-size: 24px; line-height: 1; margin: 0 0 13px; text-transform: uppercase; }
.event-timeline__card > span { display: block; font-size: 11px; line-height: 1.72; opacity: .76; }
.event-timeline.is-enhanced .event-timeline__card { opacity: 0; }
.event-timeline.is-enhanced .event-timeline__step:nth-of-type(odd) .event-timeline__card { transform: translateX(-55px) rotate(-1deg); }
.event-timeline.is-enhanced .event-timeline__step:nth-of-type(even) .event-timeline__card { transform: translateX(55px) rotate(1deg); }
.event-timeline.is-enhanced .event-timeline__marker { transform: translate(-50%,-50%) scale(.55) rotate(-35deg); }
.event-timeline.is-enhanced .event-timeline__step.is-visible .event-timeline__card { opacity: 1; transform: translateX(0) rotate(0); }
.event-timeline.is-enhanced .event-timeline__step.is-visible .event-timeline__marker { background: var(--orange); box-shadow: 0 0 0 8px rgba(245,233,213,.94), 0 13px 30px rgba(241,90,36,.28); transform: translate(-50%,-50%) scale(1) rotate(0); }
.event-timeline.is-enhanced .event-timeline__step.is-visible .event-timeline__marker span { color: var(--cream); }
.event-timeline__finale { align-items: center; background: var(--brown); box-shadow: 0 18px 40px rgba(59,36,23,.2); color: var(--cream); display: flex; font-family: var(--font-barlow), sans-serif; gap: 22px; justify-content: center; margin: 35px auto 0; max-width: 540px; opacity: 1; padding: 25px 28px; position: relative; text-transform: uppercase; transition: opacity .65s ease, transform .65s cubic-bezier(.2,.8,.2,1); z-index: 2; }
.event-timeline__finale > span { border-right: 1px solid rgba(245,233,213,.3); font-size: 12px; letter-spacing: .1em; padding-right: 22px; }
.event-timeline__finale a { align-items: center; color: var(--orange); display: flex; font-size: 21px; font-weight: 700; gap: 8px; min-height: 44px; }
.event-timeline__finale a svg { height: 19px; width: 19px; }
.event-timeline.is-enhanced .event-timeline__finale { opacity: 0; transform: translateY(35px) scale(.96); }
.event-timeline.is-enhanced .event-timeline__finale.is-visible { opacity: 1; transform: translateY(0) scale(1); }

@media (max-width: 1100px) {
  .event-steps {
    overflow: clip;
    padding-left: clamp(22px, 5vw, 55px);
    padding-right: clamp(22px, 5vw, 55px);
  }
  .event-steps__layout { gap: 25px; grid-template-columns: minmax(0, 1fr); }
  .event-steps__intro { max-width: 650px; padding-top: 0; position: static; top: auto; }
  .event-timeline { margin: auto; max-width: 720px; min-width: 0; width: 100%; }
  .event-timeline__card,
  .event-timeline__step { min-width: 0; }
}

@media (hover: hover) {
  .event-timeline__step:hover .event-timeline__card { border-color: rgba(241,90,36,.42); box-shadow: 0 24px 50px rgba(59,36,23,.2); transform: translateY(-5px) !important; }
  .event-timeline__step:hover .event-timeline__card::after { transform: scaleX(1); }
  .event-timeline__step:hover .event-timeline__card > svg { transform: rotate(-8deg) scale(1.1); }
  .event-timeline__step:nth-of-type(even):hover .event-timeline__card > svg { transform: rotate(8deg) scale(1.1); }
  .event-timeline__step:hover .event-timeline__marker span { transform: scale(1.08); }
  .event-timeline__finale a:hover { color: var(--gold); }
}

@media (prefers-reduced-motion: reduce) {
  .event-timeline__rail > span { transform: scaleY(1); transition: none; }
  .event-timeline.is-enhanced .event-timeline__card,
  .event-timeline.is-enhanced .event-timeline__step:nth-of-type(odd) .event-timeline__card,
  .event-timeline.is-enhanced .event-timeline__step:nth-of-type(even) .event-timeline__card,
  .event-timeline.is-enhanced .event-timeline__marker,
  .event-timeline.is-enhanced .event-timeline__finale { opacity: 1; transform: none; transition: none; }
  .event-timeline.is-enhanced .event-timeline__marker { transform: translate(-50%,-50%); }
  .event-timeline__card::after,
  .event-timeline__card > svg,
  .event-timeline__marker span { transition: none; }
}

/* Catering */
.catering-intro { padding: 82px 30px 78px; }
.catering-perks { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); margin: 50px auto 0; max-width: 1180px; }
.catering-perks article { background: #26130c; box-shadow: 0 18px 38px rgba(59,36,23,.2); isolation: isolate; min-height: 370px; overflow: hidden; position: relative; transition: box-shadow .45s ease, transform .45s cubic-bezier(.2,.8,.2,1); }
.catering-perks article::after { background: linear-gradient(180deg, rgba(25,10,5,.02) 20%, rgba(25,10,5,.25) 46%, rgba(25,10,5,.96) 100%); border: 1px solid rgba(245,233,213,.28); content: ""; inset: 10px; pointer-events: none; position: absolute; z-index: 1; }
.catering-perks article > img { object-fit: cover; transition: filter .55s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.catering-perks__content { bottom: 0; color: var(--cream); display: flex; flex-direction: column; left: 0; padding: 32px; position: absolute; right: 0; text-align: left; transform: translateY(0); transition: transform .45s cubic-bezier(.2,.8,.2,1); z-index: 2; }
.catering-perks__icon { align-items: center; background: var(--orange); border: 1px solid rgba(255,255,255,.35); display: flex; height: 50px; justify-content: center; margin-bottom: 18px; transform: rotate(-3deg); transition: background .4s ease, transform .45s cubic-bezier(.2,.8,.2,1); width: 50px; }
.catering-perks__icon svg { height: 25px; width: 25px; }
.catering-perks small { color: #f4b75d; font-family: var(--font-barlow), sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .15em; margin-bottom: 7px; text-transform: uppercase; }
.catering-perks strong { font-family: var(--font-barlow), sans-serif; font-size: 25px; line-height: 1; text-transform: uppercase; }
.catering-perks p { font-size: 11px; line-height: 1.55; margin: 10px 0 0; max-width: 270px; opacity: .82; }

@media (hover: hover) {
  .catering-perks article:hover { box-shadow: 0 27px 55px rgba(59,36,23,.3); transform: translateY(-8px); }
  .catering-perks article:hover > img { filter: saturate(1.08) contrast(1.04); transform: scale(1.075); }
  .catering-perks article:hover .catering-perks__content { transform: translateY(-5px); }
  .catering-perks article:hover .catering-perks__icon { background: var(--gold); transform: rotate(5deg) scale(1.08); }
}
.catering-bars { background-color: #211009; background-image: repeating-linear-gradient(2deg, transparent 0 11px, rgba(255,255,255,.014) 12px 13px); color: var(--cream); padding: 80px clamp(28px, 8vw, 130px) 90px; }
.catering-bars__grid { align-items: stretch; display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); margin: 50px auto 0; max-width: 1200px; }
.catering-bars__grid article { background: rgba(24,10,5,.34); border: 1px solid rgba(245,233,213,.24); display: flex; flex-direction: column; min-height: 630px; overflow: hidden; position: relative; transition: background .4s ease, border-color .4s ease, box-shadow .45s ease, transform .45s cubic-bezier(.2,.8,.2,1); }
.catering-bars__grid article.is-featured { border: 2px solid var(--orange); transform: translateY(-10px); }
.catering-bars__popular { background: var(--orange); box-shadow: 0 8px 22px rgba(25,8,3,.35); font-family: var(--font-barlow), sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .09em; padding: 10px 15px; position: absolute; right: 18px; text-transform: uppercase; top: 18px; z-index: 4; }
.catering-bars__photo { height: 195px; overflow: hidden; position: relative; }
.catering-bars__photo::after { background: linear-gradient(180deg, transparent 35%, rgba(24,10,5,.9)); content: ""; inset: 0; position: absolute; }
.catering-bars__photo img { object-fit: cover; transition: filter .55s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
.catering-bars__photo > span { bottom: 17px; color: #f2b262; font-family: var(--font-barlow), sans-serif; font-size: 10px; font-weight: 700; left: 25px; letter-spacing: .14em; position: absolute; text-transform: uppercase; z-index: 2; }
.catering-bars__body { display: flex; flex: 1; flex-direction: column; padding: 27px 32px 34px; position: relative; }
.catering-bars__body::before { background: var(--orange); content: ""; height: 2px; left: 32px; position: absolute; top: 0; transform: scaleX(.28); transform-origin: left; transition: transform .45s cubic-bezier(.2,.8,.2,1); width: 68px; }
.catering-bars__number { color: rgba(245,233,213,.18); font-family: var(--font-rye), serif; font-size: 45px; line-height: 1; transition: color .4s ease, transform .45s cubic-bezier(.2,.8,.2,1); }
.catering-bars h3 { color: var(--orange); font-family: var(--font-rye), serif; font-size: 33px; font-weight: 400; margin: 12px 0; text-transform: uppercase; }
.catering-bars__body > p { font-size: 12px; line-height: 1.7; margin: 0 0 18px; opacity: .78; }
.catering-bars ul { border-top: 1px solid rgba(245,233,213,.17); display: grid; gap: 12px; list-style: none; margin: 0 0 28px; padding: 22px 0 0; }
.catering-bars li { align-items: center; display: flex; font-size: 12px; gap: 9px; }
.catering-bars li svg { color: var(--orange); flex: 0 0 auto; }
.catering-bars__body > a { align-items: center; color: #f2b262; display: flex; font-family: var(--font-barlow), sans-serif; font-size: 13px; font-weight: 700; gap: 7px; margin-top: auto; min-height: 44px; text-transform: uppercase; }
.catering-bars__body > a svg { transition: transform .35s ease; }

@media (hover: hover) {
  .catering-bars__grid article:hover { background: rgba(50,22,12,.72); border-color: rgba(241,90,36,.78); box-shadow: 0 30px 60px rgba(0,0,0,.34); transform: translateY(-9px); }
  .catering-bars__grid article.is-featured:hover { transform: translateY(-17px); }
  .catering-bars__grid article:hover .catering-bars__photo img { filter: saturate(1.13) contrast(1.06); transform: scale(1.09); }
  .catering-bars__grid article:hover .catering-bars__body::before { transform: scaleX(1); }
  .catering-bars__grid article:hover .catering-bars__number { color: rgba(245,233,213,.34); transform: translateX(7px); }
  .catering-bars__grid article:hover .catering-bars__body > a svg { transform: translateX(6px); }
}
.catering-detail { align-items: center; display: grid; grid-template-columns: 52% 48%; min-height: 670px; }
.catering-detail__copy { padding: 72px clamp(35px, 8vw, 135px); }
.catering-detail__copy h2 { font-family: var(--font-rye), serif; font-size: clamp(40px, 3.9vw, 61px); font-weight: 400; line-height: .98; margin: 0 0 22px; text-transform: uppercase; }
.catering-detail__line { display: block; white-space: nowrap; }
.catering-detail__line--accent { color: var(--orange); margin-top: 7px; }
.catering-detail__copy > p:not(.eyebrow) { font-size: 13px; line-height: 1.8; }
.catering-detail__copy ol { display: grid; gap: 13px; list-style: none; margin: 27px 0 30px; padding: 0; }
.catering-detail__copy li { border-left: 3px solid var(--orange); display: flex; flex-direction: column; padding-left: 15px; }
.catering-detail__copy li strong { font-family: var(--font-barlow), sans-serif; font-size: 16px; text-transform: uppercase; }
.catering-detail__copy li span { font-size: 11px; margin-top: 2px; }
.catering-detail__image { height: 100%; min-height: 670px; position: relative; }
.catering-detail__image::after { background: linear-gradient(90deg, var(--paper), transparent 24%); content: ""; inset: 0; position: absolute; }
.catering-detail__image img { object-fit: cover; }

/* Location */
.location-main { align-items: center; display: grid; gap: 70px; grid-template-columns: 420px 1fr; padding: 82px clamp(30px, 8vw, 135px); }
.location-main__details .inner-section-title { text-align: left; }
.location-main__details .inner-section-title > p::before { display: none; }
.location-info-row { align-items: flex-start; border-bottom: 1px solid rgba(59,36,23,.2); display: flex; gap: 18px; padding: 20px 0; }
.location-info-row > svg { color: var(--orange); flex: 0 0 auto; height: 27px; width: 27px; }
.location-info-row div { display: flex; flex-direction: column; gap: 5px; }
.location-info-row strong { font-family: var(--font-barlow), sans-serif; font-size: 16px; text-transform: uppercase; }
.location-info-row span, .location-info-row a { font-size: 12px; line-height: 1.65; }
.location-info-row a { align-items: center; display: inline-flex; min-height: 44px; }
.location-main__buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.location-map { background: #e8dfcf; border: 1px solid rgba(59,36,23,.2); box-shadow: 0 22px 50px rgba(59,36,23,.2); height: 530px; overflow: hidden; position: relative; }
.location-map iframe { border: 0; display: block; height: 100%; width: 100%; }
.location-experience { background: #24120b; color: var(--cream); padding: 78px clamp(30px, 9vw, 145px); }
.location-experience__grid { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); margin: 45px auto 0; max-width: 1120px; }
.location-experience__grid article { border: 1px solid rgba(245,233,213,.22); box-shadow: 0 18px 38px rgba(0,0,0,.24); min-height: 360px; overflow: hidden; position: relative; transition: box-shadow .45s ease, transform .45s cubic-bezier(.2,.8,.2,1); }
.location-experience__grid article::after { background: linear-gradient(180deg, rgba(15,6,2,.04) 22%, rgba(15,6,2,.94) 100%); content: ""; inset: 0; position: absolute; z-index: 1; }
.location-experience__grid article > img { object-fit: cover; transition: filter .55s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.location-experience__grid article > div { bottom: 0; left: 0; padding: 28px; position: absolute; right: 0; z-index: 2; }
.location-experience__grid article span { color: #f3b65e; font-family: var(--font-barlow), sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.location-experience__grid h3 { font-family: var(--font-rye), serif; font-size: 27px; font-weight: 400; margin: 8px 0 8px; text-transform: uppercase; }
.location-experience__grid p { font-size: 11px; line-height: 1.65; margin: 0; max-width: 300px; opacity: .82; }

@media (hover: hover) {
  .location-experience__grid article:hover { box-shadow: 0 28px 55px rgba(0,0,0,.36); transform: translateY(-8px); }
  .location-experience__grid article:hover > img { filter: saturate(1.1) contrast(1.05); transform: scale(1.075); }
}

/* Reservations */
.reservation-booking { background: #1f0f09 url("../images/reservations-cantina-bg-v2.png") center/cover no-repeat; display: grid; gap: clamp(38px, 7vw, 105px); grid-template-columns: minmax(300px,.78fr) minmax(500px,1.22fr); min-height: 830px; padding: 90px clamp(28px, 8vw, 130px); position: relative; }
.reservation-booking::before { background: linear-gradient(90deg, rgba(20,8,3,.82), rgba(20,8,3,.57) 45%, rgba(20,8,3,.2)); content: ""; inset: 0; position: absolute; }
.reservation-booking > * { position: relative; z-index: 1; }
.reservation-booking__call { align-self: center; color: var(--cream); max-width: 480px; }
.reservation-booking__call h2, .reservation-booking__form h2 { font-family: var(--font-rye), serif; font-size: clamp(43px, 4vw, 62px); font-weight: 400; line-height: 1.02; margin: 0 0 20px; text-transform: uppercase; }
.reservation-booking__call > p:not(.eyebrow), .reservation-booking__form > p:not(.eyebrow) { font-size: 12px; line-height: 1.75; margin-bottom: 28px; }
.reservation-phone { align-items: center; background: var(--orange); box-shadow: 0 5px 0 #8b280b, 0 17px 30px rgba(0,0,0,.22); color: white; display: flex; gap: 16px; max-width: 310px; padding: 17px 20px; transition: box-shadow .2s ease, transform .2s ease; }
.reservation-phone > svg { height: 31px; width: 31px; }
.reservation-phone > span { display: flex; flex-direction: column; }
.reservation-phone small { font-family: var(--font-barlow), sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.reservation-phone strong { font-family: var(--font-barlow), sans-serif; font-size: 25px; }
.reservation-phone:hover { box-shadow: 0 8px 0 #8b280b, 0 24px 38px rgba(0,0,0,.3); transform: translateY(-3px); }
.reservation-booking__details { border-top: 1px solid rgba(245,233,213,.24); display: grid; gap: 17px; margin-top: 40px; padding-top: 25px; }
.reservation-booking__details span { align-items: center; display: grid; font-size: 11px; gap: 3px 11px; grid-template-columns: auto 1fr; }
.reservation-booking__details svg { color: var(--orange); grid-row: span 2; height: 22px; width: 22px; }
.reservation-booking__details b { font-family: var(--font-barlow), sans-serif; font-size: 13px; text-transform: uppercase; }
.reservation-booking__form { align-self: stretch; background: rgba(255,248,235,.97); border: 1px solid rgba(59,36,23,.18); box-shadow: 0 30px 70px rgba(0,0,0,.28); color: var(--brown-dark); padding: 46px 48px 30px; }
.reservation-booking__form h2 { font-size: clamp(36px, 3.3vw, 52px); }
.reservation-booking__form iframe { border: 0; display: block; min-height: 510px; width: 100%; }

/* Gallery page */
.gallery-page { padding: 80px clamp(16px, 6vw, 100px); }
.gallery-page__grid { display: grid; gap: 11px; grid-auto-flow: dense; grid-auto-rows: 210px; grid-template-columns: repeat(4, 1fr); margin: 48px auto 0; max-width: 1350px; }
.gallery-page__item { grid-column: span 1; grid-row: span 1; margin: 0; overflow: hidden; position: relative; }
.gallery-page__item--1 { grid-column: span 2; grid-row: span 2; }
.gallery-page__item--2 { grid-row: span 2; }
.gallery-page__item--3 { grid-column: span 1; }
.gallery-page__item--4 { grid-column: span 1; }
.gallery-page__item--5 { grid-column: span 2; }
.gallery-page__item--6 { grid-row: span 2; }
.gallery-page__item img { object-fit: cover; transition: transform .65s ease; }
.gallery-page__item:hover img { transform: scale(1.045); }
.gallery-page__item figcaption { align-items: flex-end; background: linear-gradient(0deg, rgba(20,8,3,.88), transparent 65%); color: var(--cream); display: flex; inset: 0; justify-content: space-between; padding: 18px; position: absolute; }
.gallery-page__item figcaption span { font-family: var(--font-barlow), sans-serif; font-size: 15px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.gallery-page__item figcaption svg { height: 18px; width: 18px; }
.gallery-share { align-items: center; background: #211009; color: var(--cream); display: grid; gap: 28px; grid-template-columns: auto 1fr auto; padding: 48px clamp(30px, 9vw, 145px); }
.gallery-share > svg { color: var(--orange); height: 50px; width: 50px; }
.gallery-share h2 { font-family: var(--font-rye), serif; font-size: 32px; font-weight: 400; margin: 0 0 4px; text-transform: uppercase; }
.gallery-share .eyebrow { margin-bottom: 7px; }
.gallery-share div > span { font-size: 11px; opacity: .76; }

@media (max-width: 1500px) {
  .interior-header .header-menu-button { display: none; }
  .interior-header .desktop-nav { gap: 13px; padding: 0 14px; }
  .interior-header .desktop-nav a { font-size: 12px; }
}

@media (max-width: 1200px) {
  .page-hero { min-height: 500px; }
  .menu-category { grid-template-columns: minmax(300px, .78fr) 1.22fr; }
  .menu-category--reverse { grid-template-columns: 1.22fr minmax(300px, .78fr); }
  .about-story { gap: 55px; padding-left: 55px; padding-right: 55px; }
  .event-kinds__grid { grid-template-columns: repeat(2, 1fr); }
  .event-feature { gap: 50px; padding-left: 50px; padding-right: 50px; }
  .location-main { gap: 45px; grid-template-columns: 350px 1fr; padding-left: 55px; padding-right: 55px; }
  .reservation-details { gap: 70px; padding-left: 70px; padding-right: 70px; }
}

@media (max-width: 1050px) {
  .interior-header { grid-template-columns: 1fr auto; height: 86px; padding: 6px 22px; }
  .interior-header .brand img { height: 74px; }
  .interior-header .desktop-nav,
  .interior-header .header-actions { display: none; }
  .interior-header .mobile-menu-toggle { display: flex; }
  .interior-header .mobile-nav { top: 86px; }
}

@media (max-width: 900px) {
  .page-hero { background-position: 62% center; min-height: 520px; padding-left: 38px; padding-right: 38px; }
  .page-hero--about h1 { font-size: clamp(48px, 7.5vw, 66px); white-space: normal; }
  .page-hero--about h1 span { white-space: normal; }
  .page-hero__shade { background: linear-gradient(90deg, rgba(15,6,2,.94), rgba(15,6,2,.68) 68%, rgba(15,6,2,.2)); }
  .menu-category,
  .menu-category--reverse { grid-template-columns: 1fr; }
  .menu-category--reverse .menu-category__image { grid-column: auto; grid-row: auto; }
  .menu-category__image { min-height: 390px; }
  .about-story { grid-template-columns: 1fr; }
  .about-story__copy { max-width: 700px; }
  .about-story__photos { margin: auto; max-width: 680px; width: 100%; }
  .values-grid { grid-template-columns: 1fr; max-width: 630px; }
  .about-community { grid-template-columns: 1fr; }
  .about-community__image { min-height: 420px; }
  .about-community__image::after { background: linear-gradient(0deg, var(--paper), transparent 55%); }
  .about-community__copy { margin: auto; max-width: 720px; padding-top: 25px; }
  .event-feature { grid-template-columns: 1fr; }
  .event-feature__photos { margin: auto; max-width: 680px; width: 100%; }
  .event-feature__copy { margin: auto; max-width: 680px; }
  .event-steps__layout { gap: 25px; grid-template-columns: 1fr; }
  .event-steps__intro { max-width: 650px; padding-top: 0; position: static; }
  .event-timeline { margin: auto; max-width: 720px; width: 100%; }
  .catering-perks { grid-template-columns: 1fr; max-width: 650px; }
  .catering-perks article { min-height: 330px; }
  .catering-bars__grid { grid-template-columns: 1fr; max-width: 620px; }
  .catering-bars__grid article.is-featured { transform: none; }
  .catering-detail { grid-template-columns: 1fr; }
  .catering-detail__image { min-height: 430px; }
  .catering-detail__image::after { background: linear-gradient(0deg, transparent, var(--paper)); }
  .location-main { grid-template-columns: 1fr; }
  .location-main__details { max-width: 600px; }
  .location-map { width: 100%; }
  .location-experience__grid { grid-template-columns: 1fr; max-width: 650px; }
  .reservation-booking { grid-template-columns: 1fr; min-height: 0; }
  .reservation-booking__call { max-width: 620px; }
  .reservation-booking__form { min-height: 700px; }
  .gallery-page__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-share { grid-template-columns: auto 1fr; }
  .gallery-share .button { grid-column: span 2; justify-self: start; }
}

@media (max-width: 640px) {
  .page-hero { background-position: 66% center; min-height: 560px; padding: 52px 22px; }
  .page-hero--about { min-height: 560px; }
  .page-hero--about h1 { font-size: 44px; }
  .page-hero__shade { background: rgba(13,5,2,.73); }
  .page-hero h1 { font-size: 48px; }
  .page-hero__content > p:not(.eyebrow) { font-size: 13px; }
  .page-hero__actions { align-items: stretch; flex-direction: column; }
  .inner-section-title h2 { font-size: 38px; }
  .inner-section-title > p { font-size: 12px; }
  .inner-section-title > p::before,
  .inner-section-title > p::after { margin: 0 7px; }
  .menu-intro { padding: 55px 20px 38px; }
  .menu-stats { grid-template-columns: 1fr; }
  .menu-stats > div { border-bottom: 1px solid rgba(59,36,23,.22); border-right: 0; padding: 18px; }
  .menu-jump { align-items: stretch; flex-direction: column; text-align: center; }
  .menu-categories { padding: 10px 12px 55px; }
  .menu-category { margin-bottom: 25px; }
  .menu-category__image { min-height: 300px; }
  .menu-category__content { padding: 32px 23px; }
  .menu-category__content > h2 { font-size: 36px; }
  .menu-item { display: block; }
  .menu-item h3 { margin-bottom: 5px; }
  .menu-note { grid-template-columns: auto 1fr; padding: 35px 22px; }
  .menu-note .button { grid-column: span 2; }
  .about-story { gap: 32px; padding: 55px 22px; }
  .about-story__photos { height: 430px; }
  .about-story__year { height: 110px; width: 110px; }
  .about-story__year strong { font-size: 15px; }
  .values-section { padding: 58px 22px; }
  .values-grid article { min-height: 220px; padding: 32px 25px; }
  .about-community__image { min-height: 320px; }
  .about-community__copy { padding: 10px 22px 55px; }
  .event-kinds { padding: 58px 20px; }
  .event-kinds__grid { grid-template-columns: 1fr; }
  .event-kinds__grid article { min-height: 210px; }
  .event-feature { padding: 58px 20px; }
  .event-feature__photos { height: 400px; }
  .event-feature__photos > span { height: 100px; width: 100px; }
  .event-feature__copy h2 { font-size: 41px; }
  .event-steps { padding: 65px 18px 75px; }
  .event-steps__intro > span { margin-top: 18px; }
  .event-timeline { min-height: 0; padding-top: 20px; }
  .event-timeline__rail { bottom: 118px; left: 34px; top: 55px; }
  .event-timeline__step { min-height: 300px; padding-left: 82px; }
  .event-timeline__marker { height: 60px; left: 34px; width: 60px; }
  .event-timeline__marker span { font-size: 19px; }
  .event-timeline__card,
  .event-timeline__step:nth-of-type(odd) .event-timeline__card,
  .event-timeline__step:nth-of-type(even) .event-timeline__card { margin: 0; text-align: left; width: 100%; }
  .event-timeline__step:nth-of-type(odd) .event-timeline__card > svg { margin-left: 0; }
  .event-timeline.is-enhanced .event-timeline__step:nth-of-type(odd) .event-timeline__card,
  .event-timeline.is-enhanced .event-timeline__step:nth-of-type(even) .event-timeline__card { transform: translateX(42px); }
  .event-timeline.is-enhanced .event-timeline__step.is-visible .event-timeline__card { transform: translateX(0); }
  .event-timeline__finale { align-items: flex-start; flex-direction: column; gap: 10px; margin-left: 82px; padding: 22px; }
  .event-timeline__finale > span { border: 0; padding: 0; }
  .event-timeline__finale a { font-size: 19px; }
  .catering-intro { padding: 58px 22px; }
  .catering-perks { gap: 14px; margin-top: 35px; }
  .catering-perks article { min-height: 310px; }
  .catering-perks__content { padding: 25px; }
  .catering-perks strong { font-size: 23px; }
  .catering-bars { padding: 58px 18px; }
  .catering-bars__grid article { min-height: 590px; }
  .catering-bars__photo { height: 180px; }
  .catering-bars__body { padding: 26px 25px 30px; }
  .catering-bars__body::before { left: 25px; }
  .catering-bars__popular { right: 13px; top: 13px; }
  .catering-detail__copy { padding: 58px 22px; }
  .catering-detail__copy h2 { font-size: 41px; }
  .catering-detail__line { white-space: normal; }
  .catering-detail__image { min-height: 330px; }
  .location-main { gap: 35px; padding: 58px 22px; }
  .location-main__buttons { align-items: stretch; flex-direction: column; }
  .location-map { height: 400px; }
  .location-experience { padding: 58px 22px; }
  .location-experience__grid article { min-height: 320px; }
  .reservation-booking { gap: 34px; padding: 58px 20px; }
  .reservation-booking__form { min-height: 680px; padding: 35px 22px 20px; }
  .reservation-booking__form iframe { min-height: 500px; }
  .gallery-page { padding: 58px 10px; }
  .gallery-page__grid { gap: 7px; grid-auto-rows: 145px; grid-template-columns: repeat(2, 1fr); }
  .gallery-page__item,
  .gallery-page__item--1,
  .gallery-page__item--2,
  .gallery-page__item--3,
  .gallery-page__item--4,
  .gallery-page__item--5,
  .gallery-page__item--6 { grid-column: span 1; grid-row: span 1; }
  .gallery-page__item:first-child,
  .gallery-page__item:nth-child(6) { grid-column: span 2; grid-row: span 2; }
  .gallery-page__item figcaption { padding: 10px; }
  .gallery-page__item figcaption span { font-size: 11px; }
  .gallery-share { grid-template-columns: 1fr; padding: 42px 22px; }
  .gallery-share .button { grid-column: auto; }
}

/* Local SEO landing pages */
.footer__local-links {
  align-items: center;
  border-top: 1px solid rgba(245,233,213,.13);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: center;
  margin: 0 auto;
  max-width: 1300px;
  padding: 20px 30px;
}

.footer__local-links strong {
  color: #e9b46d;
  font-family: var(--font-barlow), sans-serif;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer__local-links a {
  font-size: 10px;
  opacity: .72;
}

.footer__local-links a:hover { color: var(--orange); opacity: 1; }

.seo-breadcrumb {
  align-items: center;
  border-bottom: 1px solid rgba(59,36,23,.16);
  display: flex;
  font-family: var(--font-barlow), sans-serif;
  font-size: 12px;
  font-weight: 700;
  gap: 9px;
  letter-spacing: .06em;
  padding: 16px clamp(24px, 8vw, 135px);
  text-transform: uppercase;
}

.seo-breadcrumb a { color: var(--orange-dark); }
.seo-breadcrumb span:last-child { opacity: .65; }

.seo-intro {
  align-items: start;
  display: grid;
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: 1fr .92fr;
  padding: 84px clamp(30px, 8vw, 135px);
}

.seo-intro__copy .inner-section-title {
  margin-left: 0;
  text-align: left;
}

.seo-intro__copy .inner-section-title > p::before { display: none; }

.seo-intro__copy > p {
  font-size: 13px;
  line-height: 1.9;
  margin: 20px 0;
  max-width: 680px;
}

.seo-intro__location {
  align-items: center;
  border-top: 1px solid rgba(59,36,23,.22);
  display: flex;
  font-size: 11px;
  gap: 12px;
  margin-top: 29px;
  padding-top: 20px;
}

.seo-intro__location svg { color: var(--orange); flex: 0 0 auto; }

.seo-highlights {
  display: grid;
  gap: 12px;
}

.seo-highlights article {
  background: #fff8eb;
  border-left: 4px solid var(--orange);
  box-shadow: 0 10px 30px rgba(59,36,23,.08);
  display: grid;
  gap: 3px 18px;
  grid-template-columns: auto 1fr;
  padding: 25px 27px;
}

.seo-highlights article > span {
  color: rgba(59,36,23,.18);
  font-family: var(--font-rye), serif;
  font-size: 34px;
  grid-row: span 2;
}

.seo-highlights h2 {
  font-family: var(--font-barlow), sans-serif;
  font-size: 19px;
  margin: 0;
  text-transform: uppercase;
}

.seo-highlights p {
  font-size: 11px;
  line-height: 1.6;
  margin: 0;
  opacity: .75;
}

.seo-feature {
  align-items: stretch;
  background: #1d0e09;
  color: var(--cream);
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 650px;
}

.seo-feature__image {
  min-height: 650px;
  overflow: hidden;
  position: relative;
}

.seo-feature__image::after {
  background: linear-gradient(90deg, transparent 62%, #1d0e09);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.seo-feature__image img { object-fit: cover; }

.seo-feature__image > span {
  align-items: center;
  background: rgba(29,14,9,.88);
  bottom: 25px;
  display: flex;
  font-family: var(--font-barlow), sans-serif;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  left: 25px;
  letter-spacing: .08em;
  padding: 12px 15px;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.seo-feature__image > span svg { color: var(--orange); height: 18px; width: 18px; }

.seo-feature__copy {
  align-self: center;
  max-width: 740px;
  padding: 70px clamp(34px, 8vw, 130px) 70px clamp(30px, 5vw, 80px);
}

.seo-feature__copy h2 {
  font-family: var(--font-rye), serif;
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 400;
  line-height: 1;
  margin: 0 0 21px;
  text-transform: uppercase;
}

.seo-feature__copy > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.85;
  margin: 0;
}

.seo-feature__copy ul {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 27px 0 31px;
  padding: 0;
}

.seo-feature__copy li {
  align-items: center;
  display: flex;
  font-family: var(--font-barlow), sans-serif;
  font-size: 14px;
  font-weight: 700;
  gap: 10px;
  text-transform: uppercase;
}

.seo-feature__copy li svg { color: var(--orange); flex: 0 0 auto; height: 19px; width: 19px; }
.seo-feature__buttons { display: flex; flex-wrap: wrap; gap: 13px; }

.seo-faq {
  padding: 82px clamp(30px, 8vw, 135px);
}

.seo-faq__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  margin: 48px auto 0;
  max-width: 1120px;
}

.seo-faq__grid article {
  background: #fff8eb;
  border: 1px solid rgba(59,36,23,.16);
  min-height: 180px;
  padding: 30px;
}

.seo-faq__grid h2 {
  font-family: var(--font-barlow), sans-serif;
  font-size: 18px;
  line-height: 1.2;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.seo-faq__grid h2::before {
  color: var(--orange);
  content: "Q. ";
}

.seo-faq__grid p {
  font-size: 11px;
  line-height: 1.75;
  margin: 0;
}

.seo-related {
  background-color: #25120b;
  background-image: repeating-linear-gradient(3deg, transparent 0 10px, rgba(255,255,255,.014) 11px 12px);
  color: var(--cream);
  padding: 76px clamp(30px, 8vw, 135px) 84px;
}

.seo-related__grid {
  display: grid;
  gap: 17px;
  grid-template-columns: repeat(3, 1fr);
  margin: 45px auto 0;
  max-width: 1120px;
}

.seo-related__grid > a {
  border: 1px solid rgba(245,233,213,.2);
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 30px;
  transition: border-color .2s ease, transform .2s ease;
}

.seo-related__grid > a:hover { border-color: var(--orange); transform: translateY(-4px); }

.seo-related__grid h2 {
  font-family: var(--font-barlow), sans-serif;
  font-size: 22px;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.seo-related__grid p { font-size: 11px; line-height: 1.7; margin: 0; opacity: .72; }

.seo-related__grid span {
  align-items: center;
  color: var(--orange);
  display: flex;
  font-family: var(--font-barlow), sans-serif;
  font-size: 13px;
  font-weight: 700;
  gap: 7px;
  margin-top: auto;
  text-transform: uppercase;
}

.seo-related__grid span svg { height: 16px; width: 16px; }

@media (max-width: 900px) {
  .seo-intro { grid-template-columns: 1fr; }
  .seo-intro__copy { max-width: 720px; }
  .seo-highlights { grid-template-columns: repeat(3, 1fr); }
  .seo-highlights article { display: block; }
  .seo-highlights article > span { display: block; margin-bottom: 8px; }
  .seo-highlights h2 { margin-bottom: 8px; }
  .seo-feature { grid-template-columns: 1fr; }
  .seo-feature__image { min-height: 440px; }
  .seo-feature__image::after { background: linear-gradient(0deg, #1d0e09, transparent 54%); }
  .seo-feature__copy { margin: auto; max-width: 760px; padding-top: 20px; }
  .seo-related__grid { grid-template-columns: 1fr; max-width: 680px; }
  .seo-related__grid > a { min-height: 200px; }
}

@media (max-width: 640px) {
  .footer__local-links { align-items: flex-start; flex-direction: column; padding: 22px 24px; }
  .dd-credit {
    grid-template-columns: 1fr;
    justify-items: center;
    margin: 0;
    padding: 28px 20px 32px;
    text-align: center;
  }
  .dd-credit__text { justify-content: center; }
  .dd-credit__logo { justify-content: center; }
  .dd-credit__logo img { height: 64px; }
  .seo-breadcrumb { font-size: 10px; overflow: hidden; padding-left: 20px; padding-right: 20px; white-space: nowrap; }
  .seo-intro { gap: 35px; padding: 58px 22px; }
  .seo-highlights { grid-template-columns: 1fr; }
  .seo-highlights article { min-height: 175px; padding: 25px; }
  .seo-feature__image { min-height: 330px; }
  .seo-feature__copy { padding: 14px 22px 55px; }
  .seo-feature__copy h2 { font-size: 40px; }
  .seo-feature__buttons { align-items: stretch; flex-direction: column; }
  .seo-faq { padding: 58px 18px; }
  .seo-faq__grid { grid-template-columns: 1fr; }
  .seo-faq__grid article { min-height: 0; padding: 25px; }
  .seo-related { padding: 58px 18px; }
}

@media (max-width: 640px) {
  .photo-ticker { padding: 16px 0; }
  .photo-ticker__heading { margin-bottom: 28px; }
  .photo-ticker__heading p { font-size: 12px; }
  .photo-ticker__heading h2 { font-size: 37px; }
  .photo-ticker__rows { gap: 10px; }
  .photo-ticker__group { gap: 10px; padding-right: 10px; }
  .photo-ticker__card { flex-basis: 74vw; }
  .photo-ticker__accent { padding: 13px 15px; }
  .photo-ticker__link { font-size: 12px; margin-top: 27px; }
}

@media (prefers-reduced-motion: reduce) {
  .photo-ticker__track { animation: none; transform: none; }
  .photo-ticker__group[aria-hidden="true"] { display: none; }
  .photo-ticker__viewport { mask-image: none; overflow-x: auto; scrollbar-width: thin; }
  .favorite-track { animation: none; transform: none; }
  .favorite-group[aria-hidden="true"] { display: none; }
  .favorite-marquee { mask-image: none; overflow-x: auto; scrollbar-width: thin; }
  .review-ticker__track { animation: none; transform: none; }
  .review-ticker__group[aria-hidden="true"] { display: none; }
  .review-ticker { mask-image: none; overflow-x: auto; scrollbar-width: thin; }
}

@media (max-width: 1500px) {
  .site-header .header-menu-button { display: none; }
}

@media (max-width: 1350px) {
  .desktop-nav { gap: 12px; }
  .desktop-nav a { font-size: 12px; }
  .desktop-nav--left { right: calc(50% + 88px); }
  .desktop-nav--right { left: calc(50% + 88px); }
  .brand { width: 145px; }
  .brand img { height: 91px; }
}

@media (max-width: 1240px) {
  .site-header,
  .interior-header {
    display: flex;
    height: 88px;
    justify-content: flex-end;
    padding: 6px 22px;
  }

  .site-header .brand,
  .interior-header .brand {
    height: 100%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 135px;
  }

  .site-header .brand img,
  .interior-header .brand img { height: 76px; }

  .site-header .desktop-nav,
  .site-header .header-actions,
  .interior-header .desktop-nav,
  .interior-header .header-actions { display: none; }

  .site-header .mobile-menu-toggle,
  .interior-header .mobile-menu-toggle {
    align-items: center;
    background: var(--orange);
    border: 0;
    color: #fff;
    display: flex;
    height: 46px;
    justify-content: center;
    margin-left: auto;
    width: 46px;
  }

  .site-header .mobile-nav,
  .interior-header .mobile-nav {
    background: var(--cream);
    box-shadow: 0 18px 30px rgba(0,0,0,.2);
    display: flex;
    flex-direction: column;
    gap: 0;
    left: 0;
    opacity: 0;
    padding: 10px 22px 24px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 88px;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .site-header .mobile-nav.is-open,
  .interior-header .mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header .mobile-nav > a:not(.button),
  .interior-header .mobile-nav > a:not(.button) {
    border-bottom: 1px solid rgba(59,36,23,.12);
    font-family: var(--font-barlow), sans-serif;
    font-size: 17px;
    font-weight: 700;
    padding: 12px 2px;
    text-transform: uppercase;
  }

  .site-header .mobile-nav .button,
  .interior-header .mobile-nav .button { margin-top: 16px; }
}

/* Responsive hero collage overrides live last so the layered composition wins
   over the original single-image hero rules above. */
@media (max-width: 1200px) and (min-width: 1101px) {
  .hero { min-height: 720px; padding-left: 42px; padding-right: 42px; }
  .hero__content { max-width: 51vw; }
  .hero h1 { font-size: clamp(68px, 6.4vw, 80px); }
  .hero .eyebrow { font-size: 18px; }
  .hero__subhead { font-size: 20px; }
  .hero__buttons .button { font-size: 18px; min-height: 60px; padding: 15px 25px; }
  .hero-collage { right: -18px; width: 56vw; }
  .hero-collage__card--family { left: 3%; }
  .hero-collage__seal { left: 2%; }
}

@media (max-width: 1100px) {
  .hero {
    align-items: flex-start;
    background-position: center;
    display: block;
    min-height: 1150px;
    padding: 62px 34px 0;
  }

  .hero__shade {
    background: linear-gradient(180deg, rgba(8,3,1,.94) 0%, rgba(11,5,2,.77) 47%, rgba(10,4,2,.34) 78%, rgba(8,3,1,.78) 100%);
  }

  .hero__content { max-width: 680px; }
  .hero h1 { font-size: clamp(58px, 10vw, 86px); }

  .hero-collage {
    bottom: 0;
    height: 510px;
    left: 50%;
    right: auto;
    top: auto;
    transform: translateX(-50%);
    width: min(94vw, 800px);
  }

  .hero-collage__card--family { height: 330px; left: 2%; top: 1%; width: 430px; }
  .hero-collage__card--fajitas { bottom: -5px; height: 350px; left: 36%; width: 240px; }
  .hero-collage__card--toast { height: 310px; right: 1%; top: 0; width: 220px; }
  .hero-collage__card--karaoke { bottom: 8px; height: 200px; right: 4%; width: 310px; }
  .hero-collage__seal { bottom: 16px; left: 3%; }
}

@media (max-width: 640px) {
  .hero {
    min-height: 930px;
    padding: 42px 20px 0;
  }

  .hero h1 { font-size: clamp(40px, 12.25vw, 54px); letter-spacing: -.045em; }
  .hero__subhead { font-size: 16px; margin: 24px 0 22px; }
  .hero__subhead br { display: none; }
  .hero__buttons { gap: 12px; max-width: 100%; }
  .hero__buttons .button { justify-content: center; width: 100%; }

  .hero-collage { height: 390px; width: 98vw; }
  .hero-collage__rope { height: 290px; opacity: .75; top: 7%; }
  .hero-collage__card--family { height: 230px; left: 1%; top: 2%; width: 62vw; }
  .hero-collage__card--fajitas { bottom: -3px; height: 245px; left: 32%; width: 39vw; }
  .hero-collage__card--toast { height: 220px; right: -1%; top: 1%; width: 35vw; }
  .hero-collage__card--karaoke { bottom: 3px; height: 140px; right: 1%; width: 48vw; }
  .hero-collage__seal { bottom: 8px; height: 78px; left: 1%; width: 78px; }
  .hero-collage__seal svg { height: 14px; margin-bottom: 2px; width: 14px; }
  .hero-collage__seal span { font-size: 7px; }
  .hero-collage__seal strong { font-size: 10px; }
  .hero-collage__paper { padding: 6px 6px 27px; }
  .hero-collage__paper figcaption { bottom: 7px; font-size: 13px; left: 9px; }
  .hero-collage__tape { height: 17px; top: -5px; width: 48px; }
}

/* Keep the complete hero message and both actions inside short desktop viewports. */
@media (min-width: 1101px) and (max-height: 900px) {
  .hero {
    height: calc(100svh - 138px);
    max-height: 770px;
    min-height: 620px;
    padding-bottom: clamp(30px, 5vh, 46px);
    padding-top: clamp(30px, 5vh, 46px);
  }

  .hero__content {
    max-width: min(820px, 50vw);
  }

  .hero .eyebrow {
    font-size: clamp(17px, 2.2vh, 20px);
    margin-bottom: clamp(14px, 2.2vh, 19px);
  }

  .hero h1 {
    font-size: clamp(74px, 9.2vh, 88px);
  }

  .hero__subhead {
    font-size: clamp(20px, 2.8vh, 24px);
    margin: clamp(18px, 2.7vh, 23px) 0 clamp(18px, 2.6vh, 22px);
  }

  .hero__buttons .button {
    font-size: 18px;
    min-height: 58px;
    padding: 14px 28px;
  }

  .hero-collage {
    transform: scale(1.01);
    transform-origin: right center;
  }
}

@media (min-width: 1101px) and (max-height: 700px) {
  .hero {
    height: calc(100svh - 126px);
    min-height: 540px;
    padding-bottom: 24px;
    padding-top: 24px;
  }

  .hero .eyebrow {
    margin-bottom: 10px;
  }

  .hero h1 {
    font-size: clamp(66px, 10.5vh, 76px);
  }

  .hero__subhead {
    font-size: 19px;
    margin: 18px 0;
  }

  .hero__buttons .button {
    font-size: 18px;
    min-height: 56px;
    padding: 13px 26px;
  }

  .hero-collage {
    transform: scale(.95);
  }
}

@media (min-width: 1101px) and (max-width: 1200px) and (max-height: 900px) {
  .hero h1 { font-size: clamp(68px, 6.3vw, 76px); }
  .hero .eyebrow { font-size: 18px; margin-bottom: 17px; }
  .hero__subhead { font-size: 22px; margin: 20px 0; }
  .hero__buttons .button { font-size: 18px; min-height: 58px; padding: 14px 25px; }
  .hero-collage { transform: scale(.98); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-collage__card,
  .hero-collage__seal { transition: none; }
}

/* Homepage and interior specials */
.home-specials {
  background-color: #f4e4c8;
  background-image:
    linear-gradient(rgba(255,249,236,.2), rgba(248,233,205,.1)),
    url("../images/specials-parchment-bg.jpg");
  background-position: center;
  background-size: cover;
  border-bottom: 4px solid var(--orange);
  color: var(--brown-dark);
  padding: 72px clamp(24px, 6vw, 105px) 62px;
}

.home-specials__heading {
  align-items: flex-end;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin: 0 auto 36px;
  max-width: 1350px;
}

.home-specials__heading .eyebrow { margin-bottom: 10px; }
.home-specials__heading h2 { font-family: var(--font-rye), serif; font-size: clamp(40px, 4.4vw, 66px); font-weight: 400; line-height: .98; margin: 0; text-transform: uppercase; }
.home-specials__heading h2 span { color: var(--orange); }
.home-specials__heading > div > p:last-child { font-size: 12px; font-weight: 500; margin: 12px 0 0; opacity: .78; }

.home-specials__grid {
  display: grid;
  gap: 17px;
  grid-template-columns: repeat(3, 1fr);
  margin: auto;
  max-width: 1350px;
}

.home-specials__card {
  background: #f2e5d0;
  border: 1px solid rgba(88,49,25,.18);
  box-shadow: 0 17px 34px rgba(84,44,20,.2);
  color: var(--brown-dark);
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  min-height: 250px;
  overflow: hidden;
  position: relative;
  transition: box-shadow .28s ease, transform .28s ease;
}

.home-specials__card:hover { box-shadow: 0 22px 44px rgba(84,44,20,.28); transform: translateY(-7px) rotate(-.35deg); }
.home-specials__card:nth-child(2):hover { transform: translateY(-7px) rotate(.35deg); }
.home-specials__image { min-height: 250px; overflow: hidden; position: relative; }
.home-specials__image img { object-fit: cover; transition: transform .55s ease; }
.home-specials__card:hover .home-specials__image img { transform: scale(1.035); }

.home-specials__copy {
  align-content: center;
  background:
    radial-gradient(circle at 13px 14px, rgba(62,33,18,.08) 0 1px, transparent 1.5px),
    #f2e5d0;
  background-size: 28px 28px;
  display: grid;
  padding: 24px 19px;
  position: relative;
}

.home-specials__copy::before { background: var(--orange); content: ""; height: 68%; left: 0; position: absolute; top: 16%; width: 3px; }
.home-specials__copy > span { color: var(--orange-dark); font-family: var(--font-barlow), sans-serif; font-size: 11px; font-style: normal; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.home-specials__copy h3 { font-family: var(--font-rye), serif; font-size: clamp(23px, 2vw, 32px); font-weight: 400; line-height: 1.03; margin: 8px 0 7px; text-transform: uppercase; }
.home-specials__copy strong { color: var(--orange); font-family: var(--font-barlow), sans-serif; font-size: 38px; line-height: 1; }
.home-specials__copy i { align-items: center; display: flex; font-family: var(--font-barlow), sans-serif; font-size: 11px; font-style: normal; font-weight: 700; gap: 5px; margin-top: 17px; text-transform: uppercase; }
.home-specials__note { font-size: 9px; font-weight: 500; margin: 24px auto 0; max-width: 1350px; opacity: .66; text-align: right; }

.specials-page { padding: 82px clamp(24px, 6vw, 100px) 70px; }
.specials-page__grid { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); margin: 48px auto 0; max-width: 1280px; }
.specials-page__card { background: #fff8eb; box-shadow: 0 14px 36px rgba(61,32,17,.15); margin: 0; overflow: hidden; scroll-margin-top: 120px; transition: transform .3s ease, box-shadow .3s ease; }
.specials-page__card:hover { box-shadow: 0 20px 44px rgba(61,32,17,.22); transform: translateY(-7px); }
.specials-page__image { aspect-ratio: 1 / 1; overflow: hidden; position: relative; }
.specials-page__image img { object-fit: cover; transition: transform .6s ease; }
.specials-page__card:hover .specials-page__image img { transform: scale(1.035); }
.specials-page__image > span { background: #25130c; bottom: 0; color: var(--cream); font-family: var(--font-barlow), sans-serif; font-size: 13px; font-weight: 700; left: 0; letter-spacing: .08em; padding: 10px 15px; position: absolute; text-transform: uppercase; z-index: 2; }
.specials-page__copy { border-top: 5px solid var(--orange); padding: 27px 27px 30px; }
.specials-page__copy > div { align-items: flex-start; display: flex; gap: 14px; justify-content: space-between; }
.specials-page__copy h2 { font-family: var(--font-rye), serif; font-size: clamp(27px, 2.5vw, 39px); font-weight: 400; line-height: 1.04; margin: 0; text-transform: uppercase; }
.specials-page__copy strong { color: var(--orange); font-family: var(--font-barlow), sans-serif; font-size: 34px; line-height: .9; white-space: nowrap; }
.specials-page__copy p { font-size: 11px; line-height: 1.7; margin: 19px 0 22px; }
.specials-page__copy a { align-items: center; color: var(--orange-dark); display: inline-flex; font-family: var(--font-barlow), sans-serif; font-size: 12px; font-weight: 700; gap: 7px; letter-spacing: .06em; min-height: 44px; text-transform: uppercase; }
.specials-page__disclaimer { font-size: 9px; margin: 27px auto 0; max-width: 1280px; opacity: .62; text-align: center; }

.specials-karaoke { background: #211009; color: var(--cream); display: grid; grid-template-columns: 1.05fr .95fr; min-height: 600px; }
.specials-karaoke__image { min-height: 600px; overflow: hidden; position: relative; }
.specials-karaoke__image::after { background: linear-gradient(90deg, transparent 62%, #211009); content: ""; inset: 0; position: absolute; }
.specials-karaoke__image img { object-fit: cover; }
.specials-karaoke__copy { align-self: center; max-width: 600px; padding: 65px clamp(35px, 6vw, 95px) 65px 30px; position: relative; }
.specials-karaoke__copy > svg { color: var(--orange); height: 44px; margin-bottom: 18px; width: 44px; }
.specials-karaoke__copy h2 { font-family: var(--font-rye), serif; font-size: clamp(42px, 4.5vw, 66px); font-weight: 400; line-height: 1.02; margin: 0; text-transform: uppercase; }
.specials-karaoke__copy h2 span { color: var(--orange); }
.specials-karaoke__copy > p:not(.eyebrow) { font-size: 12px; line-height: 1.8; margin: 25px 0 30px; opacity: .8; }

.specials-visit { overflow: hidden; padding: 75px 25px 85px; }
.specials-visit__grid { display: grid; gap: 16px; grid-template-columns: repeat(4, 1fr); margin: 42px auto 38px; max-width: 1180px; }
.specials-visit__grid a {
  --card-tilt: -.45deg;
  align-items: center;
  background: rgba(255,248,235,.92);
  border: 1px solid rgba(103,57,27,.13);
  box-shadow: 0 12px 30px rgba(76,42,20,.09);
  color: var(--brown);
  display: flex;
  flex-direction: column;
  isolation: isolate;
  min-height: 224px;
  overflow: hidden;
  padding: 28px 20px 23px;
  position: relative;
  text-align: center;
  transform: translateZ(0);
  transition: border-color .3s ease, box-shadow .35s ease, transform .35s cubic-bezier(.2,.8,.2,1);
}
.specials-visit__grid a:nth-child(even) { --card-tilt: .45deg; }
.specials-visit__grid a::before {
  background: linear-gradient(90deg, var(--gold), var(--orange));
  content: "";
  height: 5px;
  inset: auto 0 0;
  position: absolute;
  transform: scaleX(.2);
  transform-origin: center;
  transition: transform .42s cubic-bezier(.2,.8,.2,1);
}
.specials-visit__grid a::after {
  background: radial-gradient(circle, rgba(241,90,36,.13), transparent 68%);
  content: "";
  height: 220px;
  opacity: 0;
  position: absolute;
  right: -85px;
  top: -100px;
  transform: scale(.55);
  transition: opacity .35s ease, transform .5s cubic-bezier(.2,.8,.2,1);
  width: 220px;
  z-index: -1;
}
.specials-visit__grid > a > svg {
  background: rgba(241,90,36,.08);
  border: 1px solid rgba(241,90,36,.18);
  border-radius: 50%;
  box-sizing: content-box;
  color: var(--orange);
  height: 31px;
  margin-bottom: 18px;
  padding: 12px;
  transition: background-color .3s ease, color .3s ease, transform .45s cubic-bezier(.2,.8,.2,1);
  width: 31px;
}
.specials-visit__grid strong { font-family: var(--font-barlow), sans-serif; font-size: 19px; letter-spacing: .015em; line-height: 1; text-transform: uppercase; transition: color .3s ease, transform .3s ease; }
.specials-visit__grid span { font-size: 10px; line-height: 1.55; margin-top: 9px; opacity: .72; }
.specials-visit__grid i { align-items: center; color: var(--orange-dark); display: flex; font-family: var(--font-barlow), sans-serif; font-size: 10px; font-style: normal; font-weight: 700; gap: 6px; letter-spacing: .06em; margin-top: auto; opacity: .78; padding-top: 18px; text-transform: uppercase; transition: color .3s ease, opacity .3s ease, transform .3s ease; }
.specials-visit__grid i svg { height: 13px; transition: transform .3s ease; width: 13px; }
.specials-visit__grid a:focus-visible { box-shadow: 0 0 0 4px rgba(241,90,36,.25), 0 20px 40px rgba(76,42,20,.16); outline: 2px solid var(--orange); outline-offset: 3px; }
.specials-visit__grid a:active { transform: translateY(-3px) scale(.99); }
.specials-visit__actions { display: flex; gap: 14px; justify-content: center; }

@media (hover: hover) {
  .specials-visit__grid a:hover { border-color: rgba(241,90,36,.33); box-shadow: 0 22px 44px rgba(76,42,20,.17); transform: translateY(-9px) rotate(var(--card-tilt)); }
  .specials-visit__grid a:hover::before { transform: scaleX(1); }
  .specials-visit__grid a:hover::after { opacity: 1; transform: scale(1); }
  .specials-visit__grid a:hover > svg { background: var(--orange); color: var(--cream); transform: translateY(-3px) rotate(-8deg) scale(1.08); }
  .specials-visit__grid a:nth-child(even):hover > svg { transform: translateY(-3px) rotate(8deg) scale(1.08); }
  .specials-visit__grid a:hover strong { color: var(--orange-dark); transform: translateY(-1px); }
  .specials-visit__grid a:hover i { color: var(--orange); opacity: 1; transform: translateX(3px); }
  .specials-visit__grid a:hover i svg { transform: translateX(3px); }
}

@media (max-width: 1050px) {
  .home-specials__grid { grid-template-columns: 1fr; max-width: 760px; }
  .home-specials__card { min-height: 280px; }
  .home-specials__image { min-height: 280px; }
  .specials-page__grid { grid-template-columns: repeat(2, 1fr); }
  .specials-page__card:last-child { grid-column: 1 / -1; justify-self: center; max-width: 610px; width: 100%; }
}

@media (max-width: 760px) {
  .home-specials { padding: 55px 18px 48px; }
  .home-specials__heading { align-items: flex-start; flex-direction: column; gap: 25px; }
  .home-specials__heading .button { width: 100%; }
  .home-specials__card { grid-template-columns: 1fr; }
  .home-specials__image { aspect-ratio: 1 / 1; min-height: 0; }
  .home-specials__copy { min-height: 220px; padding: 27px 24px; }
  .home-specials__copy h3 { font-size: 30px; }
  .home-specials__note { text-align: left; }

  .specials-page { padding: 58px 16px 52px; }
  .specials-page__grid { grid-template-columns: 1fr; margin-top: 35px; }
  .specials-page__card:last-child { grid-column: auto; }
  .specials-karaoke { grid-template-columns: 1fr; }
  .specials-karaoke__image { min-height: 360px; }
  .specials-karaoke__image::after { background: linear-gradient(0deg, #211009, transparent 52%); }
  .specials-karaoke__copy { padding: 15px 24px 55px; }
  .specials-visit { padding: 58px 18px 68px; }
  .specials-visit__grid { grid-template-columns: repeat(2, 1fr); }
  .specials-visit__actions { align-items: stretch; flex-direction: column; }
}

@media (max-width: 430px) {
  .specials-page__copy > div { align-items: flex-start; flex-direction: column; }
  .specials-visit__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .specials-visit__grid a,
  .specials-visit__grid a::before,
  .specials-visit__grid a::after,
  .specials-visit__grid > a > svg,
  .specials-visit__grid strong,
  .specials-visit__grid i,
  .specials-visit__grid i svg { transition-duration: .01ms; }
  .specials-visit__grid a:hover { transform: none; }
}

/* Careers and printable employment application */
.careers-intro { padding: 80px clamp(24px, 7vw, 115px); }
.careers-intro__grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); margin: 45px auto 0; max-width: 1180px; }
.careers-intro__grid article { background: #fff8eb; border-bottom: 4px solid var(--orange); box-shadow: 0 13px 32px rgba(59,36,23,.12); min-height: 245px; padding: 36px 30px; }
.careers-intro__grid svg { color: var(--orange); height: 40px; width: 40px; }
.careers-intro__grid h2 { font-family: var(--font-rye), serif; font-size: 28px; font-weight: 400; margin: 24px 0 10px; text-transform: uppercase; }
.careers-intro__grid p { font-size: 11px; line-height: 1.75; margin: 0; }

.careers-culture { background: #211009; color: var(--cream); display: grid; gap: 80px; grid-template-columns: .9fr 1.1fr; padding: 85px clamp(30px, 9vw, 145px); }
.careers-culture > div:first-child > svg { color: var(--orange); height: 42px; margin-bottom: 19px; width: 42px; }
.careers-culture h2 { font-family: var(--font-rye), serif; font-size: clamp(42px, 4.2vw, 64px); font-weight: 400; line-height: 1.03; margin: 0; text-transform: uppercase; }
.careers-culture h2 span { color: var(--orange); }
.careers-culture__points { display: grid; gap: 1px; }
.careers-culture__points article { align-items: center; background: rgba(245,233,213,.055); display: grid; gap: 20px; grid-template-columns: 58px 1fr; min-height: 126px; padding: 21px 25px; }
.careers-culture__points article > strong { color: var(--gold); font-family: var(--font-rye), serif; font-size: 25px; font-weight: 400; }
.careers-culture__points h3 { font-family: var(--font-barlow), sans-serif; font-size: 20px; margin: 0 0 5px; text-transform: uppercase; }
.careers-culture__points p { font-size: 10px; line-height: 1.6; margin: 0; opacity: .68; }

.careers-apply { padding: 82px clamp(15px, 5vw, 82px) 90px; }
.careers-apply__heading { margin: 0 auto 38px; max-width: 1080px; text-align: center; }
.careers-apply__heading h2 { font-family: var(--font-rye), serif; font-size: clamp(39px, 4.5vw, 64px); font-weight: 400; line-height: 1.05; margin: 0; text-transform: uppercase; }
.careers-apply__heading > p:last-child { font-size: 11px; line-height: 1.75; margin: 18px auto 0; max-width: 700px; }

.job-application { background: #fff8eb; box-shadow: 0 17px 46px rgba(59,36,23,.15); margin: auto; max-width: 1080px; padding: clamp(24px, 5vw, 64px); }
.job-application__intro { border-bottom: 4px double rgba(59,36,23,.25); margin-bottom: 42px; padding-bottom: 30px; }
.job-application__intro > p { color: var(--orange-dark); font-family: var(--font-barlow), sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .12em; margin: 0 0 8px; text-transform: uppercase; }
.job-application__intro h2 { font-family: var(--font-rye), serif; font-size: clamp(31px, 3.8vw, 49px); font-weight: 400; margin: 0 0 10px; text-transform: uppercase; }
.job-application__intro span { display: block; font-size: 9px; line-height: 1.55; opacity: .68; }
.job-application fieldset { border: 0; border-bottom: 1px solid rgba(59,36,23,.18); margin: 0 0 36px; padding: 0 0 37px; }
.job-application legend { color: var(--orange-dark); font-family: var(--font-barlow), sans-serif; font-size: 17px; font-weight: 700; letter-spacing: .065em; margin-bottom: 22px; padding: 0; text-transform: uppercase; }
.job-application__grid { display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); }
.job-application__grid--full label:nth-child(n+3) { grid-column: 1 / -1; }
.job-application label { color: var(--brown-dark); display: grid; font-family: var(--font-barlow), sans-serif; font-size: 12px; font-weight: 700; gap: 7px; letter-spacing: .035em; text-transform: uppercase; }
.job-application input:not([type="checkbox"]),
.job-application select,
.job-application textarea { background: #f3e5d0; border: 1px solid rgba(59,36,23,.27); border-radius: 0; color: var(--brown-dark); font-family: var(--font-montserrat), sans-serif; font-size: 14px; min-height: 51px; padding: 12px 13px; width: 100%; }
.job-application textarea { min-height: 125px; resize: vertical; }
.job-application input:focus,
.job-application select:focus,
.job-application textarea:focus { border-color: var(--orange); outline: 2px solid rgba(241,90,36,.17); }
.job-application__availability { margin-top: 24px; }
.job-application__availability > p { font-family: var(--font-barlow), sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .035em; margin: 0 0 13px; text-transform: uppercase; }
.job-application__availability { display: grid; gap: 11px 18px; grid-template-columns: repeat(3, 1fr); }
.job-application__availability > p { grid-column: 1 / -1; }
.job-application__availability label,
.job-application__consent { align-items: center; display: flex; font-family: var(--font-montserrat), sans-serif; font-size: 10px; font-weight: 500; gap: 8px; letter-spacing: 0; text-transform: none; }
.job-application input[type="checkbox"] { accent-color: var(--orange); height: 17px; width: 17px; }
.job-application__questions { display: grid; gap: 13px; }
.job-application__questions label { align-items: center; background: #f3e5d0; display: grid; gap: 15px; grid-template-columns: 1fr 180px; padding: 13px 15px; }
.job-application__questions select { background: #fff8eb; min-height: 43px; }
.job-application__consent { align-items: flex-start !important; margin-top: 20px; }
.job-application__submit { align-items: center; display: flex; gap: 20px; justify-content: space-between; }
.job-application__submit > button,
.job-application__confirmation > button { align-items: center; background: #e84b17; border: 1px solid #a9320e; border-radius: 2px; box-shadow: inset 0 0 0 2px rgba(255,255,255,.11), 0 3px 0 #852508; color: #fffaf0; display: inline-flex; font-family: var(--font-barlow), sans-serif; font-size: 15px; font-weight: 700; gap: 10px; justify-content: center; letter-spacing: .065em; min-height: 52px; padding: 12px 22px; text-shadow: 0 1px 0 rgba(90,24,6,.35); text-transform: uppercase; transition: background .18s ease, box-shadow .18s ease, transform .18s ease; }
.job-application__submit > button { cursor: pointer; }
.job-application__submit > button:hover,
.job-application__confirmation > button:hover { background: #f15a24; box-shadow: inset 0 0 0 2px rgba(255,255,255,.16), 0 5px 0 #852508, 0 10px 18px rgba(55,15,3,.18); transform: translateY(-2px); }
.job-application__submit > button:active,
.job-application__confirmation > button:active { box-shadow: inset 0 0 0 2px rgba(255,255,255,.12), 0 1px 0 #852508; transform: translateY(2px); }
.job-application__submit > p { font-size: 9px; line-height: 1.5; margin: 0; max-width: 290px; opacity: .62; text-align: right; }
.job-application__confirmation { align-items: center; background: #e5efdc; border-left: 5px solid #568539; display: grid; gap: 17px; grid-template-columns: auto 1fr auto; margin-top: 30px; padding: 19px 21px; }
.job-application__confirmation > svg { color: #568539; height: 31px; width: 31px; }
.job-application__confirmation div { display: grid; gap: 3px; }
.job-application__confirmation strong { font-family: var(--font-barlow), sans-serif; font-size: 17px; text-transform: uppercase; }
.job-application__confirmation span { font-size: 9px; line-height: 1.5; }
.job-application__confirmation > button { background: #568539; border-color: #365b22; box-shadow: inset 0 0 0 2px rgba(255,255,255,.1), 0 3px 0 #294719; cursor: pointer; font-size: 12px; min-height: 44px; padding: 9px 15px; }
.job-application__confirmation > button:hover { background: #638f47; box-shadow: inset 0 0 0 2px rgba(255,255,255,.14), 0 5px 0 #294719, 0 10px 18px rgba(32,70,18,.17); }

.careers-visit { align-items: center; background: var(--orange); color: #fff; display: grid; gap: 25px; grid-template-columns: auto 1fr auto; padding: 45px clamp(28px, 9vw, 145px); }
.careers-visit > svg { height: 47px; width: 47px; }
.careers-visit p { font-family: var(--font-barlow), sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .12em; margin: 0 0 5px; text-transform: uppercase; }
.careers-visit h2 { font-family: var(--font-rye), serif; font-size: clamp(25px, 3vw, 40px); font-weight: 400; margin: 0; text-transform: uppercase; }
.careers-visit span { display: block; font-size: 10px; margin-top: 5px; }
.careers-visit .button { background: #211009; }

@media (max-width: 900px) {
  .careers-intro__grid { grid-template-columns: 1fr; max-width: 650px; }
  .careers-intro__grid article { min-height: 0; }
  .careers-culture { gap: 45px; grid-template-columns: 1fr; padding: 65px 30px; }
  .careers-visit { grid-template-columns: auto 1fr; }
  .careers-visit .button { grid-column: 1 / -1; width: 100%; }
}

@media (max-width: 650px) {
  .careers-intro { padding: 58px 18px; }
  .careers-culture { padding: 55px 20px; }
  .careers-culture__points article { grid-template-columns: 45px 1fr; padding: 18px; }
  .careers-apply { padding: 58px 12px 65px; }
  .job-application { padding: 25px 18px; }
  .job-application__grid { grid-template-columns: 1fr; }
  .job-application__grid--full label:nth-child(n+3) { grid-column: auto; }
  .job-application input:not([type="checkbox"]),
  .job-application select,
  .job-application textarea { font-size: 16px; }
  .job-application__availability { grid-template-columns: 1fr 1fr; }
  .job-application__questions label { align-items: stretch; grid-template-columns: 1fr; }
  .job-application__submit { align-items: stretch; flex-direction: column; }
  .job-application__submit > p { max-width: none; text-align: left; }
  .job-application__confirmation { align-items: flex-start; grid-template-columns: auto 1fr; }
  .job-application__confirmation > button { grid-column: 1 / -1; width: 100%; }
  .careers-visit { grid-template-columns: 1fr; padding: 38px 22px; text-align: center; }
  .careers-visit > svg { margin: auto; }
}

@media print {
  body { background: #fff; padding: 0; }
  .site-header-shell,
  .page-hero,
  .careers-intro,
  .careers-culture,
  .careers-apply__heading,
  .careers-visit,
  .interior-final-cta,
  footer,
  .mobile-action-bar,
  .job-application__submit,
  .job-application__confirmation { display: none !important; }
  .careers-apply { background: #fff; padding: 0; }
  .job-application { box-shadow: none; max-width: none; padding: 0; }
  .job-application fieldset { break-inside: avoid; margin-bottom: 20px; padding-bottom: 20px; }
  .job-application input:not([type="checkbox"]),
  .job-application select,
  .job-application textarea { background: #fff; min-height: 38px; }
}

/* Fixed two-level navigation with an overlapping, scroll-responsive mark. */
body { padding-top: 138px; }

section[id] { scroll-margin-top: 122px; }

.site-header-shell {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}

.private-event-bar {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255,255,255,.025), transparent 30%, rgba(255,255,255,.02)),
    #24130c;
  border-top: 3px solid var(--orange);
  color: var(--cream);
  display: flex;
  height: 42px;
  overflow: hidden;
  transition: height .32s ease;
}

.private-event-bar__inner {
  align-items: center;
  display: flex;
  gap: 13px;
  justify-content: center;
  margin: auto;
  max-width: 1080px;
  padding: 0 24px;
  width: 100%;
}

.private-event-bar__star {
  color: var(--gold);
  flex: 0 0 auto;
  font-size: 13px;
  line-height: 1;
}

.private-event-bar p {
  font-family: var(--font-montserrat), sans-serif;
  font-size: 12px;
  letter-spacing: .015em;
  margin: 0;
}

.private-event-bar p strong {
  color: #fff7e9;
  font-family: var(--font-barlow), sans-serif;
  font-size: 14px;
  letter-spacing: .055em;
  margin-right: 5px;
  text-transform: uppercase;
}

.private-event-bar a {
  align-items: center;
  border-bottom: 1px solid var(--gold);
  color: #f3bd72;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: var(--font-barlow), sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .075em;
  min-height: 36px;
  padding: 2px 0;
  text-transform: uppercase;
  transition: border-color .2s ease, color .2s ease;
}

.private-event-bar a:hover { border-color: #fff; color: #fff; }

.site-header-shell .site-header,
.site-header-shell .interior-header {
  box-shadow: 0 8px 24px rgba(23,10,4,.16);
  display: grid;
  gap: clamp(20px, 2vw, 38px);
  grid-template-columns: 162px minmax(0, 1fr) auto;
  grid-template-rows: minmax(0, 80px);
  height: 96px;
  padding: 8px clamp(26px, 3vw, 58px);
  position: relative;
  transition: height .32s ease, box-shadow .32s ease;
}

.site-header-shell .desktop-nav {
  align-items: center;
  bottom: auto;
  display: flex;
  gap: clamp(20px, 1.5vw, 32px);
  height: 100%;
  justify-content: center;
  left: auto;
  min-width: 0;
  position: static;
  right: auto;
  top: auto;
}

.site-header-shell .header-actions { display: flex; }
.site-header-shell .mobile-menu-toggle { display: none; }

.site-header-shell .desktop-nav a {
  align-items: center;
  color: var(--brown-dark);
  display: inline-flex;
  font-size: clamp(20px, 1.15vw, 22px);
  height: 46px;
  justify-content: center;
  letter-spacing: .04em;
  line-height: 1;
  padding: 0 4px;
  position: relative;
  transition: color .22s ease, transform .22s cubic-bezier(.2,.75,.25,1);
  z-index: 1;
}

.site-header-shell .desktop-nav a.has-new-badge {
  padding-top: 0;
}

.nav-new-badge {
  background: #9f1028;
  border-radius: 5px 5px 5px 1px;
  box-shadow: 0 3px 8px rgba(74, 6, 20, .2);
  color: #fff8eb;
  font-family: var(--font-montserrat), sans-serif;
  font-size: 9px;
  font-weight: 700;
  left: 50%;
  letter-spacing: .14em;
  line-height: 1;
  padding: 5px 7px 4px;
  position: absolute;
  text-transform: uppercase;
  top: -10px;
  transform: translateX(-50%);
  z-index: 2;
}

.site-header-shell .desktop-nav a::before {
  background: rgba(241,90,36,.1);
  border-radius: 3px;
  content: "";
  inset: 4px -10px 3px;
  opacity: 0;
  position: absolute;
  transform: scale(.78);
  transition: opacity .22s ease, transform .22s ease;
  z-index: -1;
}

.site-header-shell .desktop-nav a::after {
  bottom: 0;
  height: 3px;
  transform-origin: left center;
}

.site-header-shell .desktop-nav a:hover {
  color: var(--orange-dark);
  transform: translateY(-2px);
}

.site-header-shell .desktop-nav a.active {
  color: var(--orange-dark);
}

.site-header-shell .desktop-nav a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.site-header-shell .header-menu-link,
.site-header-shell .header-reservation-link,
.site-header-shell .header-order-link {
  font-size: 17px;
}

.site-header-shell .brand,
.site-header-shell .interior-header .brand {
  grid-column: 1;
  height: 100%;
  justify-content: flex-start;
  left: auto;
  position: relative;
  top: auto;
  transform: none;
  transition: width .32s ease;
  width: 156px;
}

.site-header-shell .brand img,
.site-header-shell .interior-header .brand img {
  filter: drop-shadow(0 8px 8px rgba(39,18,8,.2));
  height: 112px;
  transition: height .32s cubic-bezier(.2,.8,.2,1), filter .32s ease;
}

.site-header-shell.is-scrolled .private-event-bar { height: 34px; }

.site-header-shell.is-scrolled .site-header,
.site-header-shell.is-scrolled .interior-header {
  box-shadow: 0 9px 26px rgba(23,10,4,.26);
  height: 72px;
  grid-template-rows: minmax(0, 56px);
}

.site-header-shell.is-scrolled .brand,
.site-header-shell.is-scrolled .interior-header .brand {
  top: auto;
  width: 124px;
}

.site-header-shell.is-scrolled .brand img,
.site-header-shell.is-scrolled .interior-header .brand img {
  filter: drop-shadow(0 4px 5px rgba(39,18,8,.16));
  height: 82px;
}

.site-header-shell.is-scrolled .desktop-nav a { padding-bottom: 0; padding-top: 0; }
.site-header-shell.is-scrolled .desktop-nav a.has-new-badge { padding-top: 0; }
.site-header-shell.is-scrolled .nav-new-badge { font-size: 8px; padding: 4px 6px 3px; top: -8px; }
.site-header-shell.is-scrolled .desktop-nav a::after { bottom: 0; }
.site-header-shell.is-scrolled .header-order-link { padding-bottom: 11px; padding-top: 12px; }
.site-header-shell.is-scrolled .header-reservation-link { min-height: 42px; padding-bottom: 9px; padding-top: 9px; }

@media (max-width: 1500px) {
  .site-header-shell .site-header,
  .site-header-shell .interior-header { gap: 18px; grid-template-columns: 145px minmax(0, 1fr) auto; padding-left: 26px; padding-right: 26px; }
  .site-header-shell .desktop-nav { gap: 16px; }
  .site-header-shell .desktop-nav a { font-size: 19px; }
  .site-header-shell .header-menu-link { display: none; }
  .site-header-shell .header-reservation-link { font-size: 14px; padding-left: 14px; padding-right: 14px; }
  .site-header-shell .header-order-link { font-size: 15px; padding-left: 17px; padding-right: 17px; }
}

@media (max-width: 1180px) {
  .site-header-shell .site-header,
  .site-header-shell .interior-header {
    display: flex;
    justify-content: space-between;
  }

  .site-header-shell .brand,
  .site-header-shell .interior-header .brand {
    left: auto;
    margin-right: auto;
    position: relative;
    top: auto;
    transform: none;
  }

  .site-header-shell .desktop-nav,
  .site-header-shell .header-actions,
  .site-header-shell .interior-header .desktop-nav,
  .site-header-shell .interior-header .header-actions { display: none; }

  .site-header-shell .mobile-menu-toggle,
  .site-header-shell .interior-header .mobile-menu-toggle { display: flex; }

  .site-header-shell .mobile-nav,
  .site-header-shell .interior-header .mobile-nav { top: 96px; }

  .site-header-shell.is-scrolled .mobile-nav,
  .site-header-shell.is-scrolled .interior-header .mobile-nav { top: 72px; }

  .site-header-shell .mobile-nav > a:not(.button),
  .site-header-shell .interior-header .mobile-nav > a:not(.button) { font-size: 20px; padding: 14px 3px; }

  .mobile-nav-new-badge {
    background: #9f1028;
    border-radius: 4px;
    color: #fff8eb;
    display: inline-flex;
    font-family: var(--font-montserrat), sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    margin-left: 8px;
    padding: 4px 6px 3px;
    text-transform: uppercase;
    vertical-align: middle;
  }

  .site-header-shell .mobile-menu-toggle,
  .site-header-shell .interior-header .mobile-menu-toggle { transition: background .2s ease, transform .2s ease; }

  .site-header-shell .mobile-menu-toggle:hover,
  .site-header-shell .interior-header .mobile-menu-toggle:hover { background: var(--brown-dark); transform: rotate(-4deg) scale(1.06); }
}

@media (max-width: 1240px) {
  body { padding-top: 126px; }
  section[id] { scroll-margin-top: 110px; }

  .private-event-bar { height: 40px; }
  .private-event-bar__inner { padding: 0 16px; }

  .site-header-shell .site-header,
  .site-header-shell .interior-header {
    height: 86px;
    grid-template-rows: minmax(0, 74px);
    padding: 6px 20px;
  }

  .site-header-shell .brand,
  .site-header-shell .interior-header .brand { top: 53%; width: 144px; }

  .site-header-shell .brand img,
  .site-header-shell .interior-header .brand img { height: 98px; }

  .site-header-shell.is-scrolled .private-event-bar { height: 34px; }

  .site-header-shell.is-scrolled .site-header,
  .site-header-shell.is-scrolled .interior-header { height: 70px; grid-template-rows: minmax(0, 58px); }

  .site-header-shell.is-scrolled .brand img,
  .site-header-shell.is-scrolled .interior-header .brand img { height: 76px; }

  .site-header-shell .mobile-nav,
  .site-header-shell .interior-header .mobile-nav { top: 86px; }

  .site-header-shell.is-scrolled .mobile-nav,
  .site-header-shell.is-scrolled .interior-header .mobile-nav { top: 70px; }
}

@media (max-width: 640px) {
  body { padding-top: 122px; }
  section[id] { scroll-margin-top: 102px; }

  .private-event-bar { height: 44px; }
  .private-event-bar__inner { gap: 8px; justify-content: space-between; padding: 0 10px; }
  .private-event-bar__star { font-size: 11px; }
  .private-event-bar p { flex: 1 1 auto; font-size: 0; line-height: 1; }
  .private-event-bar p strong { display: block; font-size: 10px; line-height: 1.05; margin: 0; }
  .private-event-bar a { font-size: 10px; min-height: 44px; padding: 2px 0; white-space: nowrap; }

  .site-header-shell .site-header,
  .site-header-shell .interior-header { height: 78px; padding: 5px 14px; }

  .site-header-shell .brand,
  .site-header-shell .interior-header .brand { width: 128px; }

  .site-header-shell .brand img,
  .site-header-shell .interior-header .brand img { height: 90px; }

  .site-header-shell .mobile-menu-toggle,
  .site-header-shell .interior-header .mobile-menu-toggle { height: 44px; width: 44px; }

  .site-header-shell .mobile-nav,
  .site-header-shell .interior-header .mobile-nav { top: 78px; }

  .site-header-shell.is-scrolled .site-header,
  .site-header-shell.is-scrolled .interior-header { height: 62px; }

  .site-header-shell.is-scrolled .brand img,
  .site-header-shell.is-scrolled .interior-header .brand img { height: 68px; }

  .site-header-shell.is-scrolled .mobile-nav,
  .site-header-shell.is-scrolled .interior-header .mobile-nav { top: 62px; }
}

@media (prefers-reduced-motion: reduce) {
  .site-header-shell *,
  .site-header-shell *::before,
  .site-header-shell *::after { transition-duration: .01ms !important; }
}

/* Keep desktop navigation compact even when legacy WordPress CSS is cached. */
@media (min-width: 1181px) {
  .site-header-shell .desktop-nav.desktop-nav--main > a {
    align-self: center !important;
    background: transparent !important;
    box-shadow: none !important;
    height: 46px !important;
    padding: 0 4px !important;
    transform: none;
  }

  .site-header-shell .desktop-nav.desktop-nav--main > a.active::before {
    display: none !important;
    opacity: 0 !important;
  }

  .site-header-shell .desktop-nav.desktop-nav--main > a.active::after {
    bottom: 0 !important;
  }

  .site-header-shell .desktop-nav.desktop-nav--main > a.has-new-badge {
    padding: 0 4px !important;
  }

  .site-header-shell .desktop-nav.desktop-nav--main > a.has-new-badge .nav-new-badge {
    top: -10px !important;
  }
}
