:root {
  --bg: #0d0a08;
  --bg-soft: #15100d;
  --cream: #f0e7d8;
  --cream-deep: #dfd1bd;
  --ink: #1b120d;
  --text: #fff9ef;
  --muted: #baa99a;
  --accent: #ff2f70;
  --accent-soft: rgba(255, 47, 112, .25);
  --ease: cubic-bezier(.2,.8,.2,1);
  --side: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); overflow-x: hidden; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { color: inherit; font: inherit; }
button, a, input, select { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
img { max-width: 100%; }
::selection { background: var(--accent); color: white; }

.intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 70%, rgba(255, 126, 55, .08), transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, .3), transparent 40%),
    #080604;
  transition: opacity .82s var(--ease), visibility .82s var(--ease);
}
.intro.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.intro-oven {
  position: relative;
  width: min(92vw, 980px);
  aspect-ratio: 1.22 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1.08);
}
.intro-mouth {
  position: absolute;
  inset: 7% 10% 12%;
  border-radius: 50% 50% 44% 44% / 58% 58% 42% 42%;
  background:
    radial-gradient(circle at 50% 82%, rgba(255, 140, 72, .28), rgba(255, 140, 72, 0) 24%),
    radial-gradient(circle at 50% 58%, rgba(0, 0, 0, .98) 0 36%, rgba(8, 6, 4, .98) 54%, rgba(16, 11, 8, 0) 65%);
  box-shadow:
    inset 0 0 0 2px rgba(255, 205, 167, .05),
    0 0 120px rgba(255, 90, 40, .10);
}
.intro-fire {
  position: absolute;
  left: 50%;
  bottom: 17%;
  width: min(48vw, 340px);
  height: min(15vw, 110px);
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 169, 80, .9), rgba(255, 110, 48, .48) 38%, rgba(255, 76, 42, 0) 72%);
  filter: blur(14px);
  animation: introFire 1.45s ease-in-out infinite alternate;
}
.intro-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(68vw, 760px);
  aspect-ratio: 1.22 / 1;
  border-radius: 50% 50% 44% 44% / 58% 58% 42% 42%;
  transform: translate(-50%, -50%) scale(.22);
  border: 28px solid rgba(116, 64, 34, .72);
  box-shadow:
    0 0 0 1px rgba(255, 212, 170, .08),
    inset 0 0 0 1px rgba(255, 212, 170, .04),
    inset 0 0 40px rgba(255, 121, 55, .08),
    0 0 40px rgba(0, 0, 0, .45);
  opacity: 0;
}
.intro-ring-1 { animation: ovenFlight 1.5s linear infinite; }
.intro-ring-2 { animation: ovenFlight 1.5s linear infinite .18s; }
.intro-ring-3 { animation: ovenFlight 1.5s linear infinite .36s; }
.intro-ring-4 { animation: ovenFlight 1.5s linear infinite .54s; }
.intro-ring-5 { animation: ovenFlight 1.5s linear infinite .72s; }
.intro-sparks {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 44% 50%, rgba(255, 177, 103, .78) 0 1px, transparent 1.6px),
    radial-gradient(circle at 58% 42%, rgba(255, 177, 103, .72) 0 1px, transparent 1.6px),
    radial-gradient(circle at 50% 39%, rgba(255, 177, 103, .62) 0 1px, transparent 1.6px),
    radial-gradient(circle at 37% 58%, rgba(255, 177, 103, .6) 0 1px, transparent 1.6px),
    radial-gradient(circle at 60% 61%, rgba(255, 177, 103, .65) 0 1px, transparent 1.6px);
  opacity: .78;
  animation: sparkDrift 1.5s ease-out infinite;
}
.intro-wordmark {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-3%);
}
.intro-wordmark strong {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.7rem, 17vw, 8rem);
  font-weight: 400;
  letter-spacing: -.065em;
  text-shadow: 0 6px 30px rgba(0, 0, 0, .55);
  animation: introWordmark .9s var(--ease) forwards;
}
.intro-wordmark span {
  margin-top: 7px;
  color: #ff9569;
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .26em;
  text-transform: uppercase;
}
body:not(.hero-ready) .site-header,
body:not(.hero-ready) .hero > * {
  opacity: 0;
  transform: translateY(18px) scale(.988);
}
.site-header,
.hero > * {
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
body.hero-ready .site-header,
body.hero-ready .hero > * {
  opacity: 1;
  transform: none;
}
@keyframes introWordmark {
  from { opacity: 0; transform: scale(.93); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes ovenFlight {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(.18); }
  16% { opacity: .82; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.55); }
}
@keyframes introFire {
  from { opacity: .68; transform: translateX(-50%) scale(.95); }
  to { opacity: 1; transform: translateX(-50%) scale(1.12); }
}
@keyframes sparkDrift {
  from { opacity: .08; transform: scale(.86) translateY(0); }
  35% { opacity: .72; }
  to { opacity: 0; transform: scale(1.22) translateY(-18px); }
}
@media (max-width: 640px) {
  .intro-oven { width: min(102vw, 760px); }
  .intro-ring { border-width: 18px; }
  .intro-fire { bottom: 18%; width: min(60vw, 260px); }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 76px;
  padding: 0 var(--side);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(13,10,8,.96), rgba(13,10,8,0));
  transition: height .3s ease, background .3s ease;
}
.site-header.is-scrolled {
  height: 66px;
  background: rgba(13,10,8,.92);
  backdrop-filter: blur(18px);
}
.brand {
  position: absolute;
  left: 50%;
  top: 17px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: .9;
}
.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.03rem;
  font-weight: 400;
  letter-spacing: -.03em;
}
.brand span {
  margin-top: 5px;
  color: var(--accent);
  font-size: .49rem;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.header-nav { display: none; }
.header-right { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.header-booking {
  min-height: 42px;
  padding: 0 15px;
  border: 0;
  background: var(--cream);
  color: var(--ink);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.menu-button {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}
.menu-button span {
  position: absolute;
  left: 9px;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: transform .35s var(--ease), top .35s var(--ease);
}
.menu-button span:first-child { top: 17px; }
.menu-button span:last-child { top: 25px; }
.menu-button[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  padding: 112px var(--side) 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #130e0b;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-18px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.mobile-menu nav a,
.mobile-menu nav button {
  padding: 0;
  border: 0;
  background: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 13vw, 4.4rem);
  line-height: 1;
}
.mobile-menu nav button { color: var(--accent); }
.mobile-menu-info { color: var(--muted); font-size: .9rem; line-height: 1.5; }
.mobile-menu-info p { margin: 3px 0; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 100px var(--side) 50px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, var(--accent-soft), transparent 26%),
    radial-gradient(circle at 8% 18%, rgba(255,255,255,.035), transparent 18%),
    var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-heading {
  position: relative;
  z-index: 20;
  width: 100%;
  text-align: center;
}
.hero-heading h1 {
  margin: 0 auto;
  max-width: 100%;
  font-size: clamp(2.55rem, 12.5vw, 5.2rem);
  font-weight: 950;
  letter-spacing: -.075em;
  line-height: .93;
}
.hero-heading h1 span { color: var(--accent); }

.pizza-stage {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 405px;
  margin-top: 10px;
  flex: 0 0 auto;
}
.pizza-wheel {
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 1px;
  height: 1px;
}
.pizza-card {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 166px;
  height: 262px;
  margin-left: -83px;
  padding: 0;
  border: 0;
  background: transparent;
  transform-origin: 50% 115%;
  transition: transform .78s var(--ease), opacity .6s ease, filter .6s ease;
  will-change: transform, opacity;
}
.pizza-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 27px 23px rgba(0,0,0,.62));
  pointer-events: none;
}
.pizza-card.is-selected img {
  filter: drop-shadow(0 32px 29px rgba(0,0,0,.73)) saturate(1.08) brightness(1.04);
}
.selected-aura {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: min(86vw, 360px);
  height: min(86vw, 360px);
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft), transparent 68%);
  filter: blur(19px);
  animation: aura 4s ease-in-out infinite alternate;
}
@keyframes aura { to { transform: translateX(-50%) scale(1.1); opacity: .65; } }

.hero-controls {
  position: relative;
  z-index: 21;
  width: min(100%, 520px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.slider-arrow {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  transition: transform .25s var(--ease), background .25s ease;
}
.slider-arrow:hover { transform: scale(1.06); background: white; }
.slider-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pizza-meta { min-width: 0; text-align: center; }
.pizza-meta strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 400;
}
.pizza-meta p {
  max-width: 230px;
  margin: 5px auto 0;
  overflow: hidden;
  color: var(--muted);
  font-size: .72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pizza-meta span {
  display: block;
  margin-top: 7px;
  color: #82766e;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .16em;
}
.hero-actions {
  position: relative;
  z-index: 21;
  width: min(100%, 520px);
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.primary-action,
.secondary-action {
  min-height: 52px;
  padding: 0 20px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .71rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.primary-action { background: var(--accent); color: white; }
.secondary-action { background: #201711; color: var(--text); }

.restaurant-section {
  position: relative;
  min-height: 690px;
  padding: 88px var(--side) 105px;
  overflow: hidden;
  background: var(--cream);
  color: var(--ink);
}
.restaurant-copy { position: relative; z-index: 5; max-width: 760px; }
.restaurant-copy h2,
.section-heading h2,
.evening-title h2,
.locations-heading h2,
.reservation-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 12vw, 5.3rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .98;
}
.restaurant-copy > p,
.section-heading > p,
.locations-heading > p,
.reservation-copy > p {
  max-width: 590px;
  margin: 24px 0 0;
  color: #675a4f;
  font-size: 1rem;
  line-height: 1.7;
}
.text-button {
  margin-top: 28px;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--ink);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.restaurant-hours {
  position: relative;
  z-index: 5;
  max-width: 520px;
  margin-top: 46px;
  padding: 27px;
  background: #e0d3c0;
  border-radius: 28px 8px 28px 8px;
}
.restaurant-hours p {
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.restaurant-hours p:last-child { margin-bottom: 0; }
.restaurant-hours span { color: #827264; font-size: .75rem; }
.restaurant-hours strong { font-size: .92rem; }
.restaurant-slice {
  position: absolute;
  right: -32%;
  bottom: -12%;
  width: min(90vw, 550px);
  transform: rotate(17deg);
  pointer-events: none;
}
.restaurant-slice img { width: 100%; filter: drop-shadow(0 34px 34px rgba(61,32,16,.24)); }

.menu-section {
  padding: 92px var(--side) 110px;
  background: #130e0b;
}
.section-heading { max-width: 800px; }
.section-heading h2 { color: var(--cream); }
.section-heading > p { color: var(--muted); }
.menu-flow { margin-top: 66px; }
.menu-card {
  position: relative;
  min-height: 510px;
  margin-bottom: 36px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: #201611;
  border-radius: 34px 10px 34px 10px;
}
.menu-card-two { background: #e25337; }
.menu-card-three { background: #d8c8b2; color: var(--ink); }
.menu-image {
  min-height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-image img {
  width: min(80vw, 360px);
  filter: drop-shadow(0 30px 28px rgba(0,0,0,.48));
}
.menu-copy { position: relative; z-index: 4; }
.menu-copy > span { color: var(--accent); font-size: .72rem; font-weight: 900; letter-spacing: .12em; }
.menu-card-two .menu-copy > span { color: #43130d; }
.menu-card-three .menu-copy > span { color: #8b3e2d; }
.menu-copy h3 {
  margin: 9px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 15vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .92;
}
.menu-copy p { max-width: 450px; margin: 17px 0 0; color: var(--muted); line-height: 1.6; }
.menu-card-two .menu-copy p { color: rgba(255,255,255,.8); }
.menu-card-three .menu-copy p { color: #67594d; }
.menu-copy button,
.menu-footer button {
  min-height: 46px;
  margin-top: 22px;
  padding: 0 17px;
  border: 0;
  background: var(--cream);
  color: var(--ink);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.menu-card-two .menu-copy button { background: #3f150f; color: white; }
.menu-card-three .menu-copy button { background: var(--ink); color: white; }
.menu-footer {
  max-width: 720px;
  margin-top: 60px;
  padding: 28px;
  background: #1e1510;
  border-radius: 8px 28px 8px 28px;
}
.menu-footer p { margin: 0; color: var(--muted); line-height: 1.55; }

.evening-section {
  padding: 88px var(--side) 100px;
  background: #e15135;
  color: white;
}
.evening-title { max-width: 880px; }
.evening-cards {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.evening-cards article {
  min-height: 210px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(54,15,9,.16);
  border-radius: 28px 8px 28px 8px;
}
.evening-cards article:nth-child(2) { margin-left: 8%; }
.evening-cards article:nth-child(3) { margin-right: 11%; }
.evening-cards span { margin-bottom: auto; color: #5d1e13; font-size: .72rem; font-weight: 900; }
.evening-cards h3 { margin: 24px 0 7px; font-family: Georgia, "Times New Roman", serif; font-size: 2rem; font-weight: 400; }
.evening-cards p { margin: 0; max-width: 35ch; line-height: 1.55; }

.locations-section {
  padding: 92px var(--side) 110px;
  background: var(--cream);
  color: var(--ink);
}
.locations-heading { max-width: 760px; }
.location-flow {
  margin-top: 55px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.location-flow button {
  width: 100%;
  min-height: 155px;
  padding: 25px;
  border: 0;
  background: #dfd1bd;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border-radius: 8px 28px 8px 28px;
  transition: transform .25s var(--ease), background .25s ease;
}
.location-flow button:nth-child(2) { width: 91%; margin-left: auto; }
.location-flow button:nth-child(3) { width: 84%; }
.location-flow button:hover { transform: translateY(-3px); background: white; }
.location-flow strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.75rem; font-weight: 400; }
.location-flow span { margin-top: 9px; color: #67594d; font-size: .84rem; }
.location-flow small { margin-top: auto; padding-top: 20px; color: #98432f; font-size: .67rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }

.reservation-section {
  position: relative;
  min-height: 620px;
  padding: 94px var(--side) 105px;
  overflow: hidden;
  background: #100b08;
}
.reservation-copy { position: relative; z-index: 5; max-width: 720px; }
.reservation-copy h2 { color: var(--cream); }
.reservation-copy > p { color: var(--muted); }
.reservation-copy .primary-action { margin-top: 29px; }
.reservation-visual {
  position: absolute;
  right: -35%;
  bottom: -21%;
  width: min(86vw, 520px);
  transform: rotate(-15deg);
  opacity: .82;
  pointer-events: none;
}
.reservation-visual img { filter: drop-shadow(0 35px 35px rgba(0,0,0,.58)); }

footer {
  padding: 82px var(--side) 28px;
  background: var(--cream);
  color: var(--ink);
}
.footer-main { max-width: 800px; }
.footer-brand {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 24vw, 10rem);
  letter-spacing: -.07em;
  line-height: .84;
}
.footer-main p { max-width: 430px; margin: 27px 0 0; color: #6d5e51; line-height: 1.6; }
.footer-addresses {
  margin-top: 55px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-addresses div { display: flex; flex-direction: column; gap: 6px; }
.footer-addresses strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; font-weight: 400; }
.footer-addresses span { color: #76675a; font-size: .82rem; }
.footer-contact {
  margin-top: 46px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  font-weight: 800;
}
.footer-contact button {
  min-height: 46px;
  margin-top: 6px;
  padding: 0 17px;
  border: 0;
  background: var(--ink);
  color: white;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-bottom {
  margin-top: 75px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #77685c;
  font-size: .72rem;
}
.footer-bottom div { display: flex; gap: 22px; }
.footer-bottom a:hover { color: var(--accent); }

.booking-dialog {
  width: min(calc(100% - 24px), 660px);
  max-height: calc(100dvh - 24px);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  overflow: visible;
}
.booking-dialog::backdrop { background: rgba(5,3,2,.78); backdrop-filter: blur(10px); }
.booking-shell {
  max-height: calc(100dvh - 24px);
  padding: 25px;
  overflow-y: auto;
  background: var(--cream);
  border-radius: 34px 10px 34px 10px;
  box-shadow: 0 35px 110px rgba(0,0,0,.45);
}
.booking-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.booking-head span { color: #8c7969; font-size: .66rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.booking-head h2 { margin: 7px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: 2.25rem; font-weight: 400; letter-spacing: -.04em; }
.booking-close { width: 46px; height: 46px; flex: 0 0 auto; border: 0; background: #dfd1bd; color: var(--ink); font-size: 1.7rem; line-height: 1; }
.booking-summary { margin: 25px 0; padding: 17px; background: #dfd1bd; border-radius: 18px 5px 18px 5px; color: #5e5146; line-height: 1.45; }
.booking-step { display: flex; flex-direction: column; gap: 16px; }
.booking-step label,
.guest-field,
.time-picker { display: flex; flex-direction: column; gap: 8px; }
.booking-step label > span,
.guest-field > span,
.time-picker > span { color: #79685a; font-size: .68rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.booking-step input,
.booking-step select {
  width: 100%;
  min-height: 58px;
  padding: 0 16px;
  border: 0;
  border-radius: 14px 4px 14px 4px;
  outline: none;
  background: #dfd1bd;
  color: var(--ink);
}
.booking-step input:focus,
.booking-step select:focus { background: white; }
.guest-control { min-height: 58px; padding: 7px; display: flex; align-items: center; justify-content: space-between; background: #dfd1bd; border-radius: 14px 4px 14px 4px; }
.guest-control button { width: 44px; height: 44px; border: 0; background: var(--ink); color: white; font-size: 1.2rem; }
.guest-control output { font-family: Georgia, "Times New Roman", serif; font-size: 1.4rem; }
.booking-error { min-height: 18px; margin: 0; color: #9e3e2a; font-size: .8rem; }
.booking-next,
.booking-submit {
  min-height: 58px;
  border: 0;
  background: var(--accent);
  color: white;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.booking-back { min-height: 47px; border: 0; background: transparent; color: #756456; font-size: .69rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.time-options { display: flex; flex-wrap: wrap; gap: 10px; }
.time-options button { min-width: calc(50% - 5px); min-height: 52px; border: 0; background: #dfd1bd; color: var(--ink); font-weight: 900; border-radius: 12px 4px 12px 4px; }
.time-options button.is-selected { background: var(--ink); color: white; }
.booking-confirmation { min-height: 360px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.booking-confirmation > span { color: #98432f; font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.booking-confirmation h3 { margin: 14px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: 2.7rem; font-weight: 400; }
.booking-confirmation p { color: #66574b; line-height: 1.65; }
.booking-confirmation button { min-height: 50px; margin-top: 18px; padding: 0 18px; border: 0; background: var(--ink); color: white; font-weight: 900; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (min-width: 600px) {
  :root { --side: 34px; }
  .hero { padding-top: 110px; }
  .hero-heading h1 { font-size: clamp(4rem, 10vw, 7rem); }
  .pizza-stage { height: 500px; }
  .pizza-card { width: 214px; height: 338px; margin-left: -107px; }
  .hero-actions { flex-direction: row; }
  .hero-actions > * { flex: 1; }
  .restaurant-hours { padding: 31px; }
  .restaurant-hours p { flex-direction: row; justify-content: space-between; gap: 20px; }
  .restaurant-slice { right: -18%; }
  .menu-card { min-height: 590px; padding: 34px; }
  .menu-image { min-height: 350px; }
  .evening-cards article { min-height: 230px; }
  .booking-shell { padding: 34px; }
  .time-options button { min-width: calc(33.333% - 7px); }
  .footer-addresses { flex-direction: row; justify-content: space-between; max-width: 750px; }
  .footer-contact { flex-direction: row; align-items: center; flex-wrap: wrap; gap: 20px 30px; }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 900px) {
  :root { --side: clamp(48px, 5vw, 84px); }
  .site-header { height: 88px; }
  .site-header.is-scrolled { height: 72px; }
  .brand { top: 19px; }
  .brand strong { font-size: 1.16rem; }
  .header-nav { display: flex; align-items: center; gap: clamp(25px, 3vw, 44px); }
  .header-nav a { font-size: .68rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
  .header-nav a:hover { color: var(--accent); }
  .menu-button { display: none; }
  .header-right { gap: 28px; }
  .header-booking { min-height: 46px; padding: 0 20px; }

  .hero { min-height: 820px; height: 100svh; max-height: 1020px; padding-top: 118px; padding-bottom: 44px; }
  .hero-heading h1 { font-size: clamp(4.8rem, 7.8vw, 8.8rem); }
  .pizza-stage { height: min(62vh, 620px); min-height: 535px; margin-top: -2px; }
  .pizza-wheel { bottom: 50px; }
  .pizza-card { width: clamp(250px, 19vw, 320px); height: clamp(395px, 30vw, 506px); margin-left: calc(clamp(250px, 19vw, 320px) / -2); }
  .selected-aura { bottom: 58px; width: clamp(350px, 31vw, 500px); height: clamp(350px, 31vw, 500px); }
  .hero-controls { width: min(100%, 650px); margin-top: -20px; }
  .pizza-meta p { max-width: 340px; font-size: .84rem; }
  .hero-actions { width: min(100%, 430px); margin-top: 18px; }

  .restaurant-section { min-height: 760px; padding-top: 120px; padding-bottom: 120px; }
  .restaurant-copy h2,
  .section-heading h2,
  .evening-title h2,
  .locations-heading h2,
  .reservation-copy h2 { font-size: clamp(4.6rem, 7.2vw, 8rem); }
  .restaurant-copy > p { margin-left: 42%; font-size: 1.1rem; }
  .restaurant-copy .text-button { margin-left: 42%; }
  .restaurant-hours { width: 500px; margin: 46px 0 0 42%; }
  .restaurant-slice { width: min(44vw, 610px); right: -6%; bottom: -21%; }

  .menu-section { padding-top: 122px; padding-bottom: 135px; }
  .section-heading > p { margin-left: 44%; font-size: 1.08rem; }
  .menu-flow { margin-top: 90px; }
  .menu-card {
    width: min(100%, 1050px);
    min-height: 500px;
    margin-bottom: 52px;
    padding: 42px;
    flex-direction: row;
    align-items: center;
    gap: 55px;
  }
  .menu-card-one { margin-left: 0; }
  .menu-card-two { width: min(92%, 980px); margin-left: auto; flex-direction: row-reverse; }
  .menu-card-three { width: min(86%, 920px); margin-left: 7%; }
  .menu-image { flex: 1; min-height: 0; }
  .menu-image img { width: min(34vw, 430px); }
  .menu-copy { flex: 0 1 390px; }
  .menu-copy h3 { font-size: clamp(4.7rem, 6.5vw, 7.2rem); }
  .menu-footer { margin-left: 31%; }

  .evening-section { padding-top: 118px; padding-bottom: 125px; }
  .evening-cards { flex-direction: row; align-items: flex-start; gap: 17px; margin-top: 70px; }
  .evening-cards article { flex: 1; min-height: 280px; }
  .evening-cards article:nth-child(2) { margin: 55px 0 0; }
  .evening-cards article:nth-child(3) { margin: 15px 0 0; }

  .locations-section { padding-top: 120px; padding-bottom: 130px; display: flex; align-items: flex-start; gap: 80px; }
  .locations-heading { flex: 1; }
  .location-flow { flex: 0 1 560px; margin-top: 0; }

  .reservation-section { min-height: 670px; padding-top: 120px; display: flex; align-items: center; }
  .reservation-copy { max-width: 780px; }
  .reservation-visual { width: min(42vw, 570px); right: 0; bottom: -25%; }

  footer { padding-top: 100px; }
  .footer-brand { font-size: clamp(7rem, 14vw, 13rem); }
  .footer-addresses { margin-left: 33%; }
  .footer-contact { margin-left: 33%; }
}

@media (min-width: 1280px) {
  .pizza-stage { min-height: 570px; }
  .pizza-card { width: clamp(285px, 18.5vw, 340px); height: clamp(451px, 29vw, 538px); margin-left: calc(clamp(285px, 18.5vw, 340px) / -2); }
}

@media (max-height: 800px) and (min-width: 900px) {
  .hero { min-height: 800px; height: auto; }
  .hero-heading h1 { font-size: clamp(4.4rem, 7vw, 7rem); }
  .pizza-stage { min-height: 500px; height: 500px; }
  .pizza-card { width: 245px; height: 387px; margin-left: -122.5px; }
}

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


.hero {
  background:
    radial-gradient(circle at 50% 39%, rgba(255, 129, 61, .18), transparent 20%),
    radial-gradient(circle at 50% 62%, var(--accent-soft), transparent 30%),
    radial-gradient(circle at 8% 18%, rgba(255,255,255,.035), transparent 18%),
    radial-gradient(circle at 92% 12%, rgba(255, 172, 112, .04), transparent 16%),
    var(--bg);
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% 0;
  height: 42%;
  background: radial-gradient(circle at 50% 24%, rgba(255, 122, 45, .12), transparent 48%);
  pointer-events: none;
}
.hero-heading h1 {
  text-shadow: 0 12px 38px rgba(0,0,0,.24);
}
.selected-aura {
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 38%, #ffb26d 62%), transparent 68%);
  filter: blur(22px);
}
.ingredient-cloud {
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
}
.ingredient {
  position: absolute;
  left: calc(50% + var(--x));
  top: calc(50% + var(--y));
  width: clamp(28px, 5vw, 56px);
  height: clamp(28px, 5vw, 56px);
  display: block;
  transform: translate(-50%, -50%) rotate(var(--r, 0deg)) scale(var(--s, 1));
  transform-origin: center;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,.18));
  animation: ingredientFloat var(--d, 5.6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  will-change: transform;
}
.ingredient img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.ingredient::before,
.ingredient::after { content: ""; position: absolute; inset: 0; }
.ingredient--leaf { width: clamp(30px, 5.2vw, 58px); height: clamp(24px, 4.2vw, 44px); }
.ingredient--tomato { width: clamp(30px, 5.2vw, 60px); height: clamp(30px, 5.2vw, 60px); }
.ingredient--pepperoni,
.ingredient--nduja,
.ingredient--truffle,
.ingredient--mushroom,
.ingredient--burrata,
.ingredient--mozzarella,
.ingredient--ricotta,
.ingredient--pesto,
.ingredient--chili {
  border-radius: 50%;
}
.ingredient--pepperoni {
  background: radial-gradient(circle at 38% 34%, #ff946f 0, #d44229 36%, #a62214 72%, #7a160d 100%);
  box-shadow: inset 0 0 0 2px rgba(255, 179, 146, .28);
}
.ingredient--nduja {
  width: clamp(22px, 3.8vw, 40px);
  height: clamp(20px, 3.6vw, 36px);
  border-radius: 52% 38% 56% 42% / 48% 54% 42% 58%;
  background: radial-gradient(circle at 38% 34%, #ff8d55 0, #dd3a21 50%, #961812 100%);
}
.ingredient--truffle {
  width: clamp(20px, 3.2vw, 34px);
  height: clamp(18px, 3vw, 28px);
  border-radius: 54% 42% 66% 40% / 48% 42% 64% 50%;
  background: radial-gradient(circle at 34% 36%, #9b7b58 0, #6a4b34 52%, #3d291d 100%);
}
.ingredient--mushroom {
  width: clamp(30px, 4.8vw, 52px);
  height: clamp(28px, 4.5vw, 46px);
}
.ingredient--mushroom::before {
  inset: 0 auto 30% 0;
  width: 100%;
  height: 70%;
  border-radius: 52% 52% 42% 42% / 68% 68% 34% 34%;
  background: linear-gradient(180deg, #f6e7d5, #cfb49a);
}
.ingredient--mushroom::after {
  inset: 44% 35% 0;
  border-radius: 0 0 40% 40%;
  background: linear-gradient(180deg, #ead7bf, #c1a183);
}
.ingredient--burrata,
.ingredient--mozzarella,
.ingredient--ricotta {
  background: radial-gradient(circle at 34% 34%, #fffdf8 0, #f4eee1 58%, #dfd5c6 100%);
  box-shadow: inset 0 0 0 1px rgba(190, 175, 154, .24);
}
.ingredient--burrata {
  width: clamp(34px, 5.8vw, 64px);
  height: clamp(30px, 5.2vw, 56px);
  border-radius: 49% 58% 46% 56% / 52% 45% 58% 48%;
}
.ingredient--mozzarella {
  width: clamp(26px, 4.6vw, 46px);
  height: clamp(26px, 4.6vw, 46px);
}
.ingredient--ricotta {
  width: clamp(28px, 4.8vw, 50px);
  height: clamp(24px, 4.2vw, 44px);
  border-radius: 54% 46% 60% 40% / 56% 44% 58% 42%;
}
.ingredient--pesto {
  width: clamp(34px, 5.8vw, 62px);
  height: clamp(28px, 4.6vw, 46px);
  border-radius: 44% 58% 46% 54% / 52% 46% 54% 48%;
  background: radial-gradient(circle at 36% 34%, #8fc86e 0, #558c3d 52%, #3b5d2c 100%);
}
.ingredient--chili {
  width: clamp(24px, 4vw, 38px);
  height: clamp(16px, 2.8vw, 26px);
  border-radius: 58% 34% 58% 38% / 48% 42% 58% 52%;
  background: linear-gradient(135deg, #ff7248, #c72018 70%);
}
@keyframes ingredientFloat {
  0% { transform: translate(-50%, -50%) rotate(var(--r, 0deg)) translateY(0) scale(var(--s, 1)); }
  50% { transform: translate(-50%, -50%) rotate(calc(var(--r, 0deg) + 6deg)) translateY(-12px) scale(calc(var(--s, 1) * 1.03)); }
  100% { transform: translate(-50%, -50%) rotate(var(--r, 0deg)) translateY(0) scale(var(--s, 1)); }
}
.site-header,
.hero > * {
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.intro-oven {
  animation: ovenApproach 1.45s var(--ease) both;
}
.intro.is-hidden .intro-oven {
  opacity: 0;
  transform: scale(1.18);
  filter: blur(8px);
  transition: opacity .72s var(--ease), transform .72s var(--ease), filter .72s var(--ease);
}
@keyframes ovenApproach {
  from { transform: scale(.94); }
  to { transform: scale(1.08); }
}
@media (max-width: 899px) {
  .ingredient { opacity: .92; }
}
@media (max-width: 599px) {
  .ingredient {
    width: clamp(24px, 7vw, 40px);
    height: clamp(24px, 7vw, 40px);
  }
  .ingredient--leaf { width: clamp(26px, 8vw, 44px); height: clamp(20px, 6vw, 34px); }
  .ingredient--mushroom { width: clamp(26px, 8vw, 40px); height: clamp(22px, 7vw, 34px); }
  .ingredient--burrata { width: clamp(28px, 8vw, 46px); height: clamp(24px, 7vw, 40px); }
}


/* ===== Pizza oven intro, updated vibe section, and footer refresh ===== */
body:not(.hero-ready) .site-header,
body:not(.hero-ready) .hero > * {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(18px) scale(.985);
}
body.hero-ready .site-header,
body.hero-ready .hero > * {
  opacity: 1;
  filter: none;
  transform: none;
}
.site-header,
.hero > * {
  transition: opacity 1.05s var(--ease), transform 1.05s var(--ease), filter 1.05s var(--ease);
}

.intro {
  background: radial-gradient(circle at 50% 65%, rgba(255,114,45,.13), transparent 22%), #080604;
}
.intro-scene {
  position: relative;
  width: min(100vw, 980px);
  aspect-ratio: 1.33 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: introDrift 1.6s var(--ease) both;
}
.intro-oven-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,.45));
}
.intro-flare {
  position: absolute;
  inset: auto 50% 15%;
  width: min(45vw, 340px);
  height: min(18vw, 120px);
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,164,72,.95) 0, rgba(255,92,38,.48) 42%, rgba(255,92,38,0) 75%);
  filter: blur(18px);
  animation: introFlicker 1.3s ease-in-out infinite alternate;
}
.intro-wordmark {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-4%);
}
.intro-wordmark strong {
  color: var(--text);
  text-shadow: 0 8px 32px rgba(0,0,0,.55);
}
.intro-wordmark span {
  color: #ff9f76;
}
.intro.is-hidden .intro-scene {
  opacity: 0;
  transform: scale(1.38);
  filter: blur(10px);
  transition: opacity .82s var(--ease), transform .82s var(--ease), filter .82s var(--ease);
}
@keyframes introDrift {
  from { transform: scale(.96); }
  to { transform: scale(1.06); }
}
@keyframes introFlicker {
  from { opacity: .72; transform: translateX(-50%) scale(.95); }
  to { opacity: 1; transform: translateX(-50%) scale(1.08); }
}

.vibe-section {
  padding: 94px var(--side) 104px;
  background:
    radial-gradient(circle at 14% 22%, rgba(255,255,255,.06), transparent 18%),
    linear-gradient(180deg, #c94630 0%, #db5536 100%);
  color: white;
}
.vibe-heading {
  max-width: 720px;
}
.vibe-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 12vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .96;
}
.vibe-heading p {
  max-width: 31ch;
  margin: 18px 0 0;
  color: rgba(255, 242, 232, .86);
  line-height: 1.6;
}
.vibe-layout {
  margin-top: 48px;
  display: grid;
  gap: 14px;
}
.vibe-panel {
  min-height: 170px;
  padding: 22px 22px 24px;
  background: rgba(92, 23, 14, .18);
  backdrop-filter: blur(6px);
  border-radius: 30px 10px 30px 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.vibe-panel span {
  margin-bottom: auto;
  color: #5d1f16;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.vibe-panel h3 {
  margin: 22px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 7vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -.03em;
}
.vibe-panel p {
  margin: 0;
  max-width: 31ch;
  line-height: 1.55;
}
.vibe-panel-offset { width: 92%; margin-left: auto; }
.vibe-panel-compact { width: 84%; }

.site-footer {
  background: #050505;
  color: #f5eee7;
  padding: 0;
}
.footer-grid {
  padding: 78px var(--side) 56px;
  display: grid;
  gap: 36px;
}
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-column h3 {
  margin: 0 0 20px;
  color: #f3eadf;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: -.02em;
}
.footer-column p,
.footer-column a,
.footer-column li,
.footer-column span,
.footer-column strong {
  color: #e6dbcf;
}
.footer-column p,
.footer-column a {
  margin: 0 0 10px;
  line-height: 1.58;
}
.footer-column a:hover { color: #ffb08d; }
.footer-brand-column { max-width: 320px; }
.footer-wordmark {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.3rem, 20vw, 7.4rem);
  letter-spacing: -.07em;
  line-height: .82;
}
.footer-brand-column p {
  margin: 18px 0 0;
  color: #c2b5a7;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 26px;
}
.footer-social a {
  margin: 0;
  color: #f8efe3;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-column ul {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-column li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-column li span {
  color: #ad9e90;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-column li strong {
  font-size: .96rem;
  font-weight: 700;
}
.footer-links-column button {
  min-height: 48px;
  margin-top: 14px;
  padding: 0 18px;
  border: 0;
  background: #f0e7da;
  color: #15100d;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-award-panel {
  margin: 0 var(--side);
  padding: 26px 0 34px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #cabfaf;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-award-stars {
  color: #f1e5d8;
  font-size: 1.15rem;
  letter-spacing: .28em;
}
.footer-award-panel p {
  max-width: 520px;
  margin: 0;
  line-height: 1.6;
}
.footer-legalbar {
  background: #4f681d;
  color: #e9e8d8;
  padding: 18px var(--side);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: .76rem;
}
.footer-legalbar div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-legalbar a:hover { color: white; }

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.15fr .8fr .9fr .8fr;
    align-items: start;
  }
}
@media (min-width: 900px) {
  .vibe-section {
    padding-top: 112px;
    padding-bottom: 118px;
  }
  .vibe-layout {
    grid-template-columns: 1.15fr 1.15fr .95fr;
    align-items: start;
    gap: 18px;
    margin-top: 62px;
  }
  .vibe-panel-large {
    min-height: 260px;
  }
  .vibe-panel-offset {
    min-height: 230px;
    width: auto;
    margin: 42px 0 0;
  }
  .vibe-panel-compact {
    min-height: 205px;
    width: auto;
    margin-top: 12px;
  }
  .footer-grid {
    padding-top: 94px;
    padding-bottom: 66px;
  }
  .footer-award-panel {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .footer-legalbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}


/* ===== No intro, soft fade only, improved hovers, softer vibe section, and refined locations ===== */
body {
  opacity: 1;
}
body:not(.hero-ready) .site-header,
body:not(.hero-ready) .hero > *,
body:not(.hero-ready) main > section:not(.hero),
body:not(.hero-ready) footer {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(8px);
}
body.hero-ready .site-header,
body.hero-ready .hero > *,
body.hero-ready main > section:not(.hero),
body.hero-ready footer {
  opacity: 1;
  transform: none;
  filter: none;
}
.site-header,
.hero > *,
main > section,
footer {
  transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease);
}
.intro { display: none !important; }

.menu-card,
.restaurant-hours,
.location-flow button,
.vibe-panel,
.booking-shell,
.footer-grid > .footer-column,
.footer-award-panel {
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
.menu-card:hover,
.restaurant-hours:hover,
.location-flow button:hover,
.vibe-panel:hover,
.footer-grid > .footer-column:hover,
.footer-award-panel:hover {
  transform: translateY(-6px);
}
.menu-card:hover {
  box-shadow: 0 28px 50px rgba(0,0,0,.12);
}
.restaurant-hours:hover {
  box-shadow: 0 22px 42px rgba(0,0,0,.11);
}
.vibe-panel:hover {
  box-shadow: 0 22px 44px rgba(120, 60, 34, .14);
}
.location-flow button:hover {
  box-shadow: 0 26px 52px rgba(0,0,0,.12);
}
.location-flow button:hover strong,
.menu-card:hover h3,
.vibe-panel:hover h3 {
  color: var(--accent);
}

.vibe-section {
  background:
    radial-gradient(circle at 10% 18%, rgba(255,255,255,.55), transparent 18%),
    radial-gradient(circle at 92% 85%, rgba(232,120,80,.12), transparent 24%),
    linear-gradient(180deg, #f6efe5 0%, #efe2d0 100%);
  color: var(--ink);
}
.vibe-heading h2 {
  color: var(--ink);
}
.vibe-heading p {
  color: #6b5b4d;
}
.vibe-layout {
  gap: 16px;
}
.vibe-panel {
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(145, 100, 76, .12);
  box-shadow: 0 10px 20px rgba(136, 89, 60, .06);
}
.vibe-panel span {
  color: #a0593d;
}
.vibe-panel p {
  color: #5f5146;
}
.vibe-panel-large {
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,248,241,.82));
}
.vibe-panel-offset {
  background: linear-gradient(180deg, rgba(245, 232, 215, .95), rgba(237, 223, 204, .92));
}
.vibe-panel-compact {
  background: linear-gradient(180deg, rgba(238, 95, 60, .92), rgba(214, 86, 52, .95));
  color: white;
}
.vibe-panel-compact span,
.vibe-panel-compact p,
.vibe-panel-compact h3 {
  color: white;
}

.locations-section {
  background:
    radial-gradient(circle at 84% 18%, rgba(226, 91, 54, .08), transparent 18%),
    linear-gradient(180deg, #fff9f2 0%, #f2e7d7 100%);
  position: relative;
  overflow: hidden;
}
.locations-section::before {
  content: "";
  position: absolute;
  right: -120px;
  top: 72px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226,91,54,.10), rgba(226,91,54,0) 68%);
  pointer-events: none;
}
.location-flow {
  gap: 18px;
}
.location-flow button {
  position: relative;
  min-height: 182px;
  padding: 28px 28px 26px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(127, 95, 70, .12);
  box-shadow: 0 16px 28px rgba(0,0,0,.06);
  overflow: hidden;
}
.location-flow button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--accent), #b74d34);
}
.location-flow button::after {
  content: "↗";
  position: absolute;
  right: 22px;
  top: 22px;
  color: rgba(154, 86, 61, .55);
  font-size: 1.05rem;
  font-weight: 700;
  transition: transform .3s var(--ease), color .3s var(--ease);
}
.location-flow button:hover::after {
  transform: translate(3px, -3px);
  color: var(--accent);
}
.location-flow button:hover {
  background: white;
}
.location-flow strong {
  font-size: clamp(1.9rem, 4.8vw, 2.4rem);
  letter-spacing: -.03em;
}
.location-flow span {
  margin-top: 12px;
  color: #5e5148;
  font-size: .9rem;
  line-height: 1.55;
}
.location-flow small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  color: #9f5b3f;
}
.location-flow small::before {
  content: "●";
  color: #e26138;
  font-size: .7rem;
}
.location-flow button:nth-child(1) {
  width: min(100%, 560px);
}
.location-flow button:nth-child(2) {
  width: min(100%, 520px);
  margin-left: auto;
}
.location-flow button:nth-child(3) {
  width: min(100%, 480px);
  margin-left: 6%;
}

@media (min-width: 900px) {
  .vibe-section {
    padding-top: 120px;
    padding-bottom: 124px;
  }
  .vibe-layout {
    grid-template-columns: 1.05fr 1.15fr .92fr;
    gap: 20px;
    align-items: start;
  }
  .vibe-panel-large {
    min-height: 250px;
  }
  .vibe-panel-offset {
    margin-top: 36px;
    min-height: 225px;
  }
  .vibe-panel-compact {
    margin-top: 12px;
    min-height: 200px;
  }
  .locations-section {
    padding-top: 122px;
    padding-bottom: 134px;
  }
  .location-flow {
    gap: 22px;
  }
  .location-flow button {
    min-height: 210px;
  }
  .location-flow button:nth-child(1) { width: min(100%, 590px); }
  .location-flow button:nth-child(2) { width: min(100%, 540px); margin-top: 48px; }
  .location-flow button:nth-child(3) { width: min(100%, 500px); margin-top: -10px; margin-left: 10%; }
}


/* ===== smoother page fade, image galleries, and more realistic ingredients ===== */
body:not(.hero-ready) .site-header,
body:not(.hero-ready) .hero > *,
body:not(.hero-ready) main > section:not(.hero),
body:not(.hero-ready) footer,
body:not(.hero-ready) .booking-dialog[open] {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(10px);
}
.site-header { transition-delay: .02s; }
.hero-heading { transition-delay: .12s; }
.pizza-stage { transition-delay: .22s; }
.hero-controls { transition-delay: .32s; }
.hero-actions { transition-delay: .42s; }
main > section:not(.hero) { transition-delay: .16s; }
footer { transition-delay: .2s; }

.gallery-frame {
  position: relative;
  aspect-ratio: 1.08 / 1;
  border-radius: 34px 12px 34px 12px;
  overflow: hidden;
  background: #ead9c7;
  box-shadow: 0 28px 54px rgba(0, 0, 0, .14);
}
.gallery-frame-wide { aspect-ratio: 1.2 / 1; }
.gallery-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 48%, rgba(0,0,0,.14) 100%);
  pointer-events: none;
}
.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.015);
  opacity: 1;
  transition: opacity .7s var(--ease), transform 1.05s var(--ease), filter .7s var(--ease);
}
.gallery-image.is-changing {
  opacity: .02;
  transform: scale(.985);
  filter: saturate(.88) blur(2px);
}
.stage-display {
  display: grid;
  gap: 16px;
}
.gallery-meta {
  display: grid;
  gap: 6px;
}
.gallery-meta strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .96;
}
.gallery-meta span {
  max-width: 42ch;
  color: #6b5e52;
  line-height: 1.6;
}
.gallery-meta-wide strong { font-size: clamp(2.1rem, 5vw, 3.1rem); }

.vibe-shell,
.locations-shell {
  display: grid;
  gap: 26px;
}
.vibe-stage,
.location-stage {
  align-self: start;
}
.vibe-layout,
.location-flow {
  margin-top: 0;
}
.vibe-panel,
.location-flow button {
  text-align: left;
}
.vibe-panel.is-active,
.location-flow button.is-active {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(0,0,0,.11);
}
.vibe-panel.is-active h3,
.location-flow button.is-active strong {
  color: var(--accent);
}
.vibe-panel.is-active.vibe-panel-compact h3,
.vibe-panel.is-active.vibe-panel-compact p,
.vibe-panel.is-active.vibe-panel-compact span { color: white; }

.location-stage-book {
  justify-self: start;
  margin-top: 4px;
}

@media (min-width: 900px) {
  .vibe-shell {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 34px;
    align-items: start;
  }
  .locations-shell {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    gap: 38px;
    align-items: start;
  }
  .vibe-layout { order: 2; }
  .vibe-stage { order: 1; position: sticky; top: 112px; }
  .location-stage { position: sticky; top: 112px; }
}

/* Ingredient realism */
.ingredient {
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.16));
}
.ingredient img {
  filter: saturate(1.06) contrast(1.03);
}
.ingredient--tomato img,
.ingredient--leaf img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ingredient--pepperoni {
  background:
    radial-gradient(circle at 36% 34%, rgba(255, 170, 134, .85) 0 8%, transparent 9%),
    radial-gradient(circle at 62% 48%, rgba(255, 167, 118, .35) 0 7%, transparent 8%),
    radial-gradient(circle at 50% 50%, #d94f31 0, #b9291d 58%, #81150f 92%);
  box-shadow: inset 0 0 0 2px rgba(255, 173, 133, .22), inset 0 -7px 8px rgba(120, 20, 12, .25);
}
.ingredient--nduja {
  background: radial-gradient(circle at 32% 34%, #ff9b61 0, #de4e2e 42%, #8c1812 95%);
  box-shadow: inset 0 3px 7px rgba(255, 164, 108, .25), inset 0 -5px 8px rgba(94, 18, 15, .24);
}
.ingredient--truffle {
  background:
    radial-gradient(circle at 34% 36%, #a5855d 0, #79563d 48%, #432b20 100%),
    repeating-radial-gradient(circle at 50% 50%, rgba(255,255,255,.06) 0 2px, rgba(0,0,0,0) 2px 6px);
}
.ingredient--mushroom::before {
  background: linear-gradient(180deg, #f8ead7 0%, #e9d4bd 60%, #cfb39a 100%);
  box-shadow: inset 0 -2px 4px rgba(166, 122, 89, .18);
}
.ingredient--mushroom::after {
  background: linear-gradient(180deg, #efe1cf, #ceb39a);
}
.ingredient--burrata,
.ingredient--mozzarella,
.ingredient--ricotta {
  background:
    radial-gradient(circle at 35% 32%, rgba(255,255,255,.96) 0, rgba(255,255,255,.94) 24%, rgba(243, 236, 225, .96) 64%, rgba(221, 210, 196, .98) 100%);
  box-shadow: inset 0 -3px 7px rgba(180, 164, 144, .2), inset 0 2px 4px rgba(255,255,255,.7);
}
.ingredient--pesto {
  background:
    radial-gradient(circle at 38% 36%, #97c972 0, #638f45 50%, #3e652f 100%),
    repeating-radial-gradient(circle at 50% 50%, rgba(255,255,255,.09) 0 1px, rgba(0,0,0,0) 1px 4px);
}
.ingredient--chili {
  background: linear-gradient(135deg, #ff8356 0%, #da3d21 58%, #9a1d13 100%);
  box-shadow: inset 0 2px 4px rgba(255, 174, 140, .28), inset 0 -2px 4px rgba(122, 18, 14, .34);
}


.vibe-panel, .location-flow button { border: 0; width: 100%; font: inherit; cursor: pointer; -webkit-appearance: none; appearance: none; }
.vibe-panel:focus-visible, .location-flow button:focus-visible, .location-stage-book:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }


/* ===== full-section image backgrounds with dark overlays ===== */
.dynamic-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section-bg-stack {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.section-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .9s var(--ease), transform 1.2s var(--ease);
}
.section-bg-layer.is-active {
  opacity: 1;
  transform: scale(1);
}
.section-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,8,.42) 0%, rgba(8,8,8,.56) 45%, rgba(8,8,8,.64) 100%),
    radial-gradient(circle at 15% 18%, rgba(255,255,255,.08), transparent 22%);
}
.section-content-wrap {
  position: relative;
  z-index: 1;
}
.section-heading-on-image h2,
.section-heading-on-image p {
  color: #fff6ef;
  text-shadow: 0 10px 30px rgba(0,0,0,.24);
}
.section-heading-on-image p {
  color: rgba(255,243,234,.88);
}

.vibe-section {
  background: #1a100b;
  padding: 110px var(--side) 120px;
}
.vibe-layout {
  margin-top: 48px;
  display: grid;
  gap: 18px;
}
.vibe-panel {
  background: rgba(24, 16, 12, .46);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 28px rgba(0,0,0,.16);
}
.vibe-panel span { color: rgba(255,213,190,.72); }
.vibe-panel h3,
.vibe-panel p { color: #fff7f2; }
.vibe-panel p { color: rgba(255,243,235,.9); }
.vibe-panel:hover,
.vibe-panel.is-active {
  background: rgba(36, 22, 14, .58);
  border-color: rgba(255,255,255,.16);
}
.vibe-panel.is-active h3 { color: #ffffff; }
.vibe-panel-compact {
  background: rgba(201, 77, 44, .62);
}

.locations-section {
  background: #150e0a;
  padding: 116px var(--side) 126px;
}
.locations-shell {
  margin-top: 48px;
  display: grid;
  gap: 26px;
}
.location-flow {
  display: grid;
  gap: 18px;
}
.location-flow button {
  background: rgba(20, 16, 13, .52);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 28px rgba(0,0,0,.15);
}
.location-flow button strong,
.location-flow button span,
.location-flow button small {
  color: #fff6ef;
}
.location-flow button span { color: rgba(255,243,234,.88); }
.location-flow button small { color: rgba(255,210,188,.76); }
.location-flow button::before {
  background: linear-gradient(180deg, rgba(255, 117, 72, .95), rgba(183, 77, 52, .9));
}
.location-flow button::after { color: rgba(255,255,255,.48); }
.location-flow button:hover,
.location-flow button.is-active {
  background: rgba(32, 20, 14, .64);
  border-color: rgba(255,255,255,.16);
}
.location-flow button.is-active strong,
.location-flow button:hover strong { color: #ffffff; }
.location-stage-copy {
  align-self: end;
  max-width: 560px;
  display: grid;
  gap: 14px;
}
.location-stage-copy strong {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .94;
  text-shadow: 0 14px 40px rgba(0,0,0,.24);
}
.location-stage-copy p {
  margin: 0;
  color: rgba(255,243,234,.9);
  max-width: 42ch;
  line-height: 1.65;
}
.location-stage-copy .text-button {
  justify-self: start;
  color: #fff6ef;
  border-bottom-color: rgba(255,246,239,.5);
}
.location-stage-copy .text-button:hover { border-bottom-color: white; }

@media (min-width: 900px) {
  .vibe-layout {
    grid-template-columns: 1.08fr 1.12fr .95fr;
    gap: 18px;
    align-items: start;
  }
  .vibe-panel-large { min-height: 250px; }
  .vibe-panel-offset { min-height: 228px; margin-top: 40px; }
  .vibe-panel-compact { min-height: 202px; margin-top: 10px; }
  .locations-shell {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    align-items: end;
    gap: 42px;
  }
  .location-flow { max-width: 560px; }
}

/* More defined generated ingredients */
.ingredient {
  opacity: .98;
  animation-duration: var(--d, 6.2s);
}
.ingredient--leaf { width: clamp(34px, 5.2vw, 62px); height: clamp(26px, 4.2vw, 46px); }
.ingredient--tomato { width: clamp(34px, 5.2vw, 62px); height: clamp(34px, 5.2vw, 62px); }
.ingredient--pepperoni { width: clamp(34px, 5.2vw, 60px); height: clamp(34px, 5.2vw, 60px); }
.ingredient--nduja { width: clamp(26px, 4.1vw, 44px); height: clamp(22px, 3.5vw, 36px); }
.ingredient--truffle { width: clamp(24px, 3.9vw, 40px); height: clamp(20px, 3.4vw, 34px); }
.ingredient--mushroom { width: clamp(34px, 5vw, 58px); height: clamp(28px, 4.3vw, 46px); }
.ingredient--burrata { width: clamp(38px, 5.8vw, 68px); height: clamp(34px, 5.1vw, 56px); }
.ingredient--mozzarella { width: clamp(30px, 4.7vw, 50px); height: clamp(30px, 4.7vw, 50px); }
.ingredient--ricotta { width: clamp(32px, 4.8vw, 52px); height: clamp(28px, 4.2vw, 46px); }
.ingredient--pesto { width: clamp(38px, 5.8vw, 64px); height: clamp(30px, 4.8vw, 48px); }
.ingredient--chili { width: clamp(28px, 4.2vw, 42px); height: clamp(18px, 2.8vw, 28px); }
.ingredient img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 5px 8px rgba(0,0,0,.14));
}
@media (max-width: 640px) {
  .vibe-section, .locations-section { padding-top: 96px; padding-bottom: 104px; }
  .location-stage-copy strong { font-size: clamp(2.2rem, 12vw, 3.2rem); }
}


/* ===== final readability, section separation, softer hero fade, horizontal menu, and sharper ingredients ===== */
.hero {
  overflow: hidden;
}
.hero::before {
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 129, 61, .14), transparent 24%),
    radial-gradient(circle at 50% 62%, rgba(255, 115, 58, .10), transparent 34%),
    radial-gradient(circle at 50% 80%, rgba(13, 10, 8, .08), rgba(13, 10, 8, 0) 56%),
    radial-gradient(circle at 8% 18%, rgba(255,255,255,.03), transparent 18%),
    radial-gradient(circle at 92% 12%, rgba(255, 172, 112, .03), transparent 16%),
    var(--bg) !important;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 240px;
  background: linear-gradient(180deg, rgba(13,10,8,0) 0%, rgba(13,10,8,.08) 34%, rgba(13,10,8,.18) 58%, rgba(13,10,8,.88) 100%);
  pointer-events: none;
  z-index: 0;
}
.hero > * {
  position: relative;
  z-index: 1;
}

.dynamic-section {
  margin: 26px var(--side);
  border-radius: 34px;
  box-shadow: 0 28px 60px rgba(0,0,0,.18);
}
.section-bg-stack,
.section-bg-layer,
.section-bg-overlay {
  border-radius: inherit;
}
.section-bg-overlay {
  background:
    linear-gradient(180deg, rgba(10,10,10,.30) 0%, rgba(10,10,10,.48) 34%, rgba(10,10,10,.58) 66%, rgba(10,10,10,.66) 100%),
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.05), transparent 20%);
}
.section-content-wrap {
  padding: 0 clamp(18px, 2vw, 12px);
}
.vibe-heading,
.locations-heading,
.location-stage-copy {
  backdrop-filter: blur(10px);
}
.vibe-heading,
.locations-heading {
  max-width: 560px;
  padding: 28px 28px 24px;
  background: rgba(15, 12, 10, .34);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
}
.vibe-layout {
  margin-top: 72px !important;
  gap: 22px !important;
}
.vibe-panel {
  min-height: 180px;
  padding: 24px 24px 22px;
}
.locations-shell {
  margin-top: 74px !important;
  gap: 56px !important;
}
.location-flow {
  gap: 16px !important;
  max-width: 380px;
}
.location-flow button {
  min-height: 168px;
  padding-right: 42px;
}
.location-stage-copy {
  max-width: 560px;
  padding: 30px 32px;
  background: rgba(15, 12, 10, .36);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(0,0,0,.14);
}
.location-stage-copy strong {
  margin-bottom: 6px;
}
.location-stage-copy p {
  max-width: 40ch;
}
.location-stage-book {
  margin-top: 10px;
}

.menu-horizontal-section {
  position: relative;
  background: linear-gradient(180deg, #f8efe4 0%, #efe1cf 100%);
  overflow: clip;
}
.menu-horizontal-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  align-content: start;
  padding: 88px var(--side) 54px;
}
.menu-horizontal-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
}
.menu-heading-compact {
  max-width: 660px;
}
.menu-horizontal-viewport {
  overflow: hidden;
  width: 100%;
}
.menu-horizontal-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2 * 24px) / 3);
  gap: 24px;
  will-change: transform;
}
.menu-horizontal-card {
  min-height: 72svh;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(96, 62, 39, .10);
  border-radius: 34px 14px 34px 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(80, 45, 28, .08);
  display: flex;
  flex-direction: column;
}
.menu-horizontal-image {
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at 50% 50%, #fffaf5 0%, #f0dfc7 100%);
}
.menu-horizontal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.menu-horizontal-copy {
  padding: 24px 24px 28px;
  display: grid;
  gap: 10px;
  flex: 1;
}
.menu-horizontal-copy > span {
  color: #a24e36;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.menu-horizontal-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .95;
}
.menu-horizontal-copy p {
  margin: 0 0 8px;
  color: #65594f;
  line-height: 1.6;
}
.menu-card-cta {
  align-self: start;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 0;
  background: var(--ink);
  color: white;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.menu-card-cta:hover {
  transform: translateY(-3px);
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(226, 91, 54, .22);
}

/* sharper ingredient assets */
.ingredient {
  filter: drop-shadow(0 12px 16px rgba(0,0,0,.18));
}
.ingredient img {
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.16)) saturate(1.16) contrast(1.14) brightness(1.03);
}
.ingredient::after {
  content: "";
  position: absolute;
  inset: auto 10% -2px;
  height: 8px;
  background: radial-gradient(circle, rgba(0,0,0,.16), rgba(0,0,0,0) 70%);
  filter: blur(4px);
  z-index: -1;
}
.ingredient--leaf img,
.ingredient--tomato img,
.ingredient--pepperoni img,
.ingredient--nduja img,
.ingredient--truffle img,
.ingredient--mushroom img,
.ingredient--burrata img,
.ingredient--mozzarella img,
.ingredient--ricotta img,
.ingredient--pesto img,
.ingredient--chili img {
  stroke-linejoin: round;
}

@media (min-width: 900px) {
  .vibe-section {
    padding: 92px 0 100px;
  }
  .locations-section {
    padding: 98px 0 106px;
  }
  .vibe-layout {
    grid-template-columns: 1fr 1fr 1fr !important;
  }
  .vibe-panel-large { margin-top: 0; }
  .vibe-panel-offset { margin-top: 54px; }
  .vibe-panel-compact { margin-top: 96px; }
  .locations-shell {
    grid-template-columns: minmax(300px, 360px) minmax(0, 1fr) !important;
    align-items: end;
  }
  .location-stage-copy {
    justify-self: end;
  }
}
@media (max-width: 899px) {
  .dynamic-section {
    margin: 18px 12px;
    border-radius: 26px;
  }
  .menu-horizontal-section {
    height: auto !important;
  }
  .menu-horizontal-sticky {
    position: relative;
    min-height: auto;
    padding-top: 88px;
    padding-bottom: 42px;
  }
  .menu-horizontal-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
  }
  .menu-horizontal-viewport {
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }
  .menu-horizontal-track {
    grid-auto-columns: minmax(270px, 82vw);
    transform: none !important;
  }
  .menu-horizontal-card {
    scroll-snap-align: start;
    min-height: auto;
  }
  .vibe-layout {
    margin-top: 44px !important;
  }
  .locations-shell {
    margin-top: 42px !important;
    gap: 28px !important;
  }
  .vibe-heading,
  .locations-heading,
  .location-stage-copy {
    padding: 22px 20px 20px;
  }
}


.vibe-panel, .vibe-panel-large, .vibe-panel-offset, .vibe-panel-compact { width: 100% !important; margin-left: 0 !important; }
.location-flow button, .location-flow button:nth-child(1), .location-flow button:nth-child(2), .location-flow button:nth-child(3) { width: 100% !important; margin-left: 0 !important; margin-top: 0 !important; }


/* ===== final cleanup after feedback ===== */
.hero::after {
  display: none !important;
}
.hero::before {
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 129, 61, .12), transparent 22%),
    radial-gradient(circle at 50% 62%, rgba(255, 115, 58, .08), transparent 30%),
    radial-gradient(circle at 8% 18%, rgba(255,255,255,.025), transparent 18%),
    radial-gradient(circle at 92% 12%, rgba(255, 172, 112, .025), transparent 16%),
    var(--bg) !important;
}
.pizza-meta {
  min-width: 0;
}
.pizza-meta #pizza-description {
  margin-bottom: 0;
}
#pizza-counter {
  display: none !important;
}

.dynamic-section {
  margin-top: 28px;
  margin-bottom: 28px;
}
.locations-section {
  margin-bottom: 36px;
}
.menu-horizontal-section {
  margin-top: 0;
  background: linear-gradient(180deg, #f8f0e6 0%, #f1e5d7 100%);
}
.menu-horizontal-sticky {
  justify-content: start;
  align-content: start;
  gap: 0;
  padding-top: 86px;
  padding-bottom: 34px;
}
.menu-horizontal-header {
  margin-bottom: 28px;
}
.menu-heading-compact p {
  max-width: 28ch;
}
.menu-horizontal-viewport {
  width: 100%;
  overflow: hidden;
}
.menu-horizontal-track {
  align-items: start;
}
.menu-horizontal-card {
  min-height: min(78svh, 720px);
}
.menu-horizontal-image {
  aspect-ratio: 1 / 1;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 50%, #fffaf5 0%, #f3e3cd 72%, #eedcc2 100%);
}
.menu-horizontal-image img {
  object-fit: contain !important;
  transform: scale(1.02);
}
.menu-horizontal-copy {
  gap: 12px;
}
.menu-horizontal-copy p {
  max-width: 30ch;
}
.menu-card-cta {
  margin-top: auto;
}

.section-content-wrap {
  padding-left: clamp(10px, 1.6vw, 18px);
  padding-right: clamp(10px, 1.6vw, 18px);
}
.vibe-heading,
.locations-heading {
  max-width: 600px;
}
.vibe-layout {
  margin-top: 84px !important;
}
.locations-shell {
  margin-top: 84px !important;
}
.location-flow {
  max-width: 400px;
}
.location-stage-copy {
  margin-left: auto;
}

@media (min-width: 900px) {
  .menu-horizontal-header {
    min-height: 112px;
  }
  .menu-horizontal-track {
    grid-auto-columns: calc((100% - 2 * 28px) / 3);
    gap: 28px;
  }
  .menu-horizontal-viewport {
    min-height: calc(100svh - 250px);
  }
  .menu-horizontal-card {
    min-height: calc(100svh - 270px);
    max-height: 720px;
  }
}
@media (max-width: 899px) {
  .menu-horizontal-sticky {
    padding-top: 82px;
  }
  .menu-horizontal-header {
    margin-bottom: 18px;
  }
  .menu-horizontal-track {
    grid-auto-columns: minmax(280px, 86vw);
  }
  .menu-horizontal-image {
    padding: 18px;
  }
  .locations-section,
  .menu-horizontal-section,
  .vibe-section {
    margin-left: 12px;
    margin-right: 12px;
  }
}


/* ===== urgent hero + menu carousel fix ===== */
.hero::after {
  display: none !important;
  content: none !important;
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -8% 0;
  height: 40%;
  background: radial-gradient(circle at 50% 18%, rgba(255, 120, 54, .16), transparent 44%);
  pointer-events: none;
}
.selected-aura {
  background: radial-gradient(circle, rgba(255, 140, 78, .18), rgba(255, 140, 78, 0) 66%) !important;
  filter: blur(24px);
}
.ingredient-cloud {
  display: none !important;
}
.pizza-stage {
  overflow: visible;
}
.pizza-card {
  transition: transform .82s var(--ease), opacity .62s ease, filter .62s ease;
}

.menu-carousel-section {
  margin: 28px var(--side);
  padding: 88px var(--side) 92px;
  background: linear-gradient(180deg, #f8efe4 0%, #f0e2cf 100%);
  border-radius: 34px;
  overflow: hidden;
}
.menu-carousel-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.menu-carousel-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-carousel-arrow {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(42, 27, 20, .12);
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .22s var(--ease), background .22s var(--ease), opacity .22s var(--ease);
}
.menu-carousel-arrow:hover:not(:disabled) {
  transform: translateY(-2px);
  background: white;
}
.menu-carousel-arrow:disabled {
  opacity: .35;
  cursor: default;
}
.menu-carousel-arrow svg {
  width: 18px;
  height: 18px;
  stroke: #1e1713;
  stroke-width: 2;
  fill: none;
}
.menu-carousel-viewport {
  overflow: hidden;
}
.menu-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2 * 28px) / 3);
  gap: 28px;
  transition: transform .55s var(--ease);
  will-change: transform;
}
.menu-carousel-card {
  display: flex;
  flex-direction: column;
  min-height: 640px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(96, 62, 39, .10);
  border-radius: 34px 14px 34px 14px;
  box-shadow: 0 20px 40px rgba(96, 62, 39, .08);
  overflow: hidden;
}
.menu-carousel-image {
  aspect-ratio: 1 / 1;
  padding: 26px;
  background: radial-gradient(circle at 50% 50%, #fffaf5 0%, #f5e5d1 75%, #efddc4 100%);
}
.menu-carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.menu-carousel-copy {
  flex: 1;
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 24px 24px 28px;
}
.menu-carousel-copy > span {
  color: #a24e36;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.menu-carousel-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.04em;
}
.menu-carousel-copy p {
  margin: 0;
  color: #5d5249;
  line-height: 1.62;
  font-size: 1rem;
}
.menu-card-cta {
  align-self: start;
  min-height: 46px;
  margin-top: auto;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: #171210;
  color: white;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.menu-card-cta:hover {
  background: var(--accent);
}

@media (max-width: 1179px) {
  .menu-carousel-track {
    grid-auto-columns: calc((100% - 28px) / 2);
  }
  .menu-carousel-card {
    min-height: 580px;
  }
}
@media (max-width: 899px) {
  .menu-carousel-section {
    margin-left: 12px;
    margin-right: 12px;
    padding: 78px 20px 80px;
    border-radius: 26px;
  }
  .menu-carousel-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
  }
  .menu-carousel-actions {
    width: 100%;
    flex-wrap: wrap;
  }
  .menu-carousel-track {
    grid-auto-columns: 100%;
    gap: 18px;
  }
  .menu-carousel-card {
    min-height: auto;
  }
  .menu-carousel-image {
    padding: 18px;
  }
}

/* ===== definitive hero transition fix ===== */
.hero {
  background:
    radial-gradient(circle at 50% 47%, rgba(255, 128, 66, .15) 0%, rgba(255, 128, 66, .07) 24%, rgba(255, 128, 66, 0) 55%),
    radial-gradient(circle at 50% 85%, rgba(92, 39, 21, .12) 0%, rgba(92, 39, 21, 0) 58%),
    #0d0a08 !important;
}
.hero::before,
.hero::after {
  content: none !important;
  display: none !important;
  background: none !important;
}
.selected-aura {
  background: radial-gradient(circle, rgba(255, 145, 88, .17) 0%, rgba(255, 145, 88, .07) 35%, rgba(255, 145, 88, 0) 70%) !important;
  filter: blur(28px) !important;
}


/* ===== refined accordion menu ===== */
.menu-accordion-section {
  padding: 104px var(--side) 112px;
  background:
    radial-gradient(circle at 50% 0%, rgba(190, 150, 112, .08), transparent 28%),
    #f4ecdf;
  color: #211814;
}
.menu-accordion-heading {
  max-width: 1160px;
  margin: 0 auto 64px;
  text-align: center;
}
.menu-accordion-heading h2 {
  margin: 0;
  color: #96785e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 8.8rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .88;
}
.menu-accordion-heading p {
  max-width: 470px;
  margin: 26px auto 0;
  color: #75675b;
  font-size: 1rem;
  line-height: 1.65;
}
.menu-accordion {
  width: min(100%, 1260px);
  margin: 0 auto;
}
.menu-category {
  position: relative;
  border-top: 1px solid rgba(60, 43, 34, .22);
}
.menu-category:last-child {
  border-bottom: 1px solid rgba(60, 43, 34, .22);
}
.menu-category-trigger {
  width: 100%;
  min-height: 150px;
  padding: 25px 18px;
  border: 0;
  background: transparent;
  color: #07553f;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  text-align: center;
  transition: color .28s ease, background .28s ease;
}
.menu-category-trigger:hover {
  background: rgba(255, 255, 255, .26);
  color: #bf4d36;
}
.menu-category-title {
  padding-left: 62px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.3rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
}
.menu-category-symbol {
  position: relative;
  width: 52px;
  height: 52px;
  display: block;
}
.menu-category-symbol::before,
.menu-category-symbol::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform .34s var(--ease), opacity .24s ease;
}
.menu-category-symbol::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.menu-category.is-open .menu-category-symbol::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}
.menu-category-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .7s var(--ease);
}
.menu-category-inner {
  padding: 8px 72px 76px;
}
.menu-category-intro {
  max-width: 690px;
  margin: 0 auto 58px;
  color: #5d5046;
  font-size: 1.03rem;
  line-height: 1.7;
  text-align: center;
}
.menu-item-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.menu-entry {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(60px, .55fr) auto;
  align-items: end;
  gap: 20px;
}
.menu-entry-copy h3 {
  margin: 0;
  color: #201713;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.7vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.12;
}
.menu-entry-copy p {
  max-width: 660px;
  margin: 8px 0 0;
  color: #5f544b;
  font-size: .98rem;
  line-height: 1.55;
}
.menu-entry-leader {
  margin-bottom: 7px;
  border-bottom: 1px dotted rgba(44, 34, 29, .48);
}
.menu-entry > strong {
  min-width: 78px;
  color: #211814;
  font-size: 1.02rem;
  font-weight: 800;
  text-align: right;
}
.menu-accordion-footer {
  width: min(100%, 1260px);
  margin: 58px auto 0;
  display: flex;
  justify-content: center;
  gap: 14px;
}
.menu-accordion-footer .primary-action,
.menu-accordion-footer .secondary-action {
  min-width: 210px;
}
.menu-accordion-footer .primary-action {
  background: #b52d2c;
  color: white;
}
.menu-accordion-footer .secondary-action {
  background: rgba(255, 255, 255, .52);
  color: #211814;
}

@media (max-width: 899px) {
  .menu-accordion-section {
    padding: 88px 20px 96px;
  }
  .menu-accordion-heading {
    margin-bottom: 44px;
  }
  .menu-category-trigger {
    min-height: 112px;
    padding: 18px 8px;
    text-align: left;
  }
  .menu-category-title {
    padding-left: 0;
    font-size: clamp(2.6rem, 13vw, 4.4rem);
  }
  .menu-category-symbol {
    width: 44px;
    height: 44px;
  }
  .menu-category-symbol::before,
  .menu-category-symbol::after {
    width: 25px;
  }
  .menu-category-inner {
    padding: 4px 6px 56px;
  }
  .menu-category-intro {
    margin-bottom: 40px;
    text-align: left;
  }
  .menu-item-list {
    gap: 28px;
  }
  .menu-entry {
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 14px;
  }
  .menu-entry-leader {
    display: none;
  }
  .menu-entry > strong {
    padding-top: 4px;
  }
  .menu-entry-copy p {
    font-size: .92rem;
  }
  .menu-accordion-footer {
    flex-direction: column;
  }
  .menu-accordion-footer .primary-action,
  .menu-accordion-footer .secondary-action {
    width: 100%;
  }
}


/* ===== mobile header, slider motion, and transition refinement ===== */
.pizza-card {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  transition:
    transform .9s cubic-bezier(.18,.82,.18,1),
    opacity .72s cubic-bezier(.2,.8,.2,1),
    filter .72s cubic-bezier(.2,.8,.2,1) !important;
}
.pizza-card img {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.pizza-stage {
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(.988);
  filter: blur(7px);
  transition:
    opacity 1s cubic-bezier(.18,.82,.18,1),
    transform 1s cubic-bezier(.18,.82,.18,1),
    filter 1s cubic-bezier(.18,.82,.18,1) !important;
  will-change: opacity, transform, filter;
}
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}
.menu-category-panel {
  transition: max-height .82s cubic-bezier(.18,.82,.18,1) !important;
}
.mobile-menu {
  transform: translate3d(0, -14px, 0) scale(.99);
  filter: blur(7px);
  transition:
    opacity .5s cubic-bezier(.18,.82,.18,1),
    transform .5s cubic-bezier(.18,.82,.18,1),
    filter .5s cubic-bezier(.18,.82,.18,1),
    visibility .5s !important;
}
.mobile-menu.is-open {
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

@media (max-width: 899px) {
  :root { --side: 18px; }

  .site-header,
  .site-header.is-scrolled {
    box-sizing: content-box;
    height: 68px;
    padding:
      env(safe-area-inset-top, 0px)
      16px
      0;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: center;
    background: linear-gradient(180deg, rgba(13,10,8,.98) 0%, rgba(13,10,8,.78) 63%, rgba(13,10,8,0) 100%);
  }
  .site-header.is-scrolled {
    height: 62px;
    background: rgba(13,10,8,.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
  .header-nav-left,
  .header-nav {
    display: none !important;
  }
  .brand {
    position: static;
    grid-column: 2;
    justify-self: center;
    align-self: center;
    transform: none;
    z-index: 4;
    min-width: 92px;
    max-width: calc(100vw - 150px);
    margin: 0;
    line-height: .86;
    white-space: nowrap;
  }
  .brand strong {
    font-size: 1.12rem;
    line-height: .86;
  }
  .brand span {
    margin-top: 6px;
    font-size: .5rem;
  }
  .header-right {
    grid-column: 3;
    justify-self: end;
    width: 44px;
    margin: 0;
    gap: 0;
    z-index: 5;
  }
  .header-booking {
    display: none !important;
  }
  .menu-button {
    display: block;
    width: 44px;
    height: 44px;
    z-index: 6;
  }
  .mobile-menu {
    z-index: 49;
    padding:
      calc(100px + env(safe-area-inset-top, 0px))
      22px
      calc(30px + env(safe-area-inset-bottom, 0px));
  }

  .hero {
    min-height: max(780px, 100svh);
    padding:
      calc(96px + env(safe-area-inset-top, 0px))
      16px
      calc(38px + env(safe-area-inset-bottom, 0px));
    overflow: hidden;
  }
  .hero-heading {
    width: 100%;
    z-index: 12;
  }
  .hero-heading h1 {
    font-size: clamp(2.75rem, 13vw, 4.6rem);
    line-height: .9;
  }
  .pizza-stage {
    height: clamp(430px, 59svh, 540px);
    min-height: 430px;
    margin-top: 4px;
    z-index: 8;
  }
  .pizza-wheel {
    bottom: 28px;
  }
  .pizza-card {
    width: clamp(178px, 48vw, 220px);
    height: clamp(281px, 76vw, 348px);
    margin-left: calc(clamp(178px, 48vw, 220px) / -2);
    transform-origin: 50% 114%;
  }
  .selected-aura {
    bottom: 32px;
    width: min(88vw, 390px);
    height: min(88vw, 390px);
  }
  .hero-controls {
    width: min(100%, 440px);
    margin-top: -10px;
    z-index: 22;
  }
  .slider-arrow {
    width: 50px;
    height: 50px;
  }
  .pizza-meta strong {
    font-size: 1.08rem;
  }
  .pizza-meta p {
    max-width: 210px;
    font-size: .76rem;
    line-height: 1.4;
    white-space: normal;
  }
  .hero-actions {
    width: min(100%, 430px);
    margin-top: 18px;
    gap: 10px;
  }
  .hero-actions > * {
    min-height: 50px;
  }

  .reveal {
    transform: translate3d(0, 26px, 0) scale(.992);
    filter: blur(5px);
    transition-duration: .88s !important;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: max(740px, 100svh);
    padding-left: 14px;
    padding-right: 14px;
  }
  .hero-heading h1 {
    font-size: clamp(2.45rem, 12.6vw, 3.6rem);
  }
  .pizza-stage {
    height: clamp(390px, 55svh, 470px);
    min-height: 390px;
  }
  .pizza-card {
    width: clamp(162px, 46vw, 194px);
    height: clamp(256px, 73vw, 307px);
    margin-left: calc(clamp(162px, 46vw, 194px) / -2);
  }
  .hero-controls {
    margin-top: -2px;
  }
  .hero-actions {
    flex-direction: column;
  }
}


/* ===== definitive smooth transition cleanup ===== */
html {
  scroll-behavior: smooth;
}

body:not(.hero-ready) .site-header,
body:not(.hero-ready) .hero > *,
body:not(.hero-ready) main > section:not(.hero),
body:not(.hero-ready) footer,
body:not(.hero-ready) .booking-dialog[open] {
  opacity: 0 !important;
  transform: translate3d(0, 22px, 0) scale(.995) !important;
  filter: none !important;
}

body.hero-ready .site-header,
body.hero-ready .hero > *,
body.hero-ready main > section:not(.hero),
body.hero-ready footer,
body.hero-ready .booking-dialog[open] {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
  filter: none !important;
  transition:
    opacity .82s cubic-bezier(.22, 1, .36, 1),
    transform .82s cubic-bezier(.22, 1, .36, 1) !important;
  will-change: opacity, transform;
}

.site-header { transition-delay: .02s !important; }
.hero-heading { transition-delay: .12s !important; }
.pizza-stage { transition-delay: .20s !important; }
.hero-controls { transition-delay: .28s !important; }
.hero-actions { transition-delay: .36s !important; }
main > section:not(.hero) { transition-delay: .12s !important; }
footer { transition-delay: .16s !important; }

.reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(.995);
  filter: none !important;
  transition:
    opacity .82s cubic-bezier(.22, 1, .36, 1),
    transform .82s cubic-bezier(.22, 1, .36, 1) !important;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: none !important;
}

.mobile-menu {
  filter: none !important;
  transform: translate3d(0, -10px, 0);
  transition:
    opacity .36s cubic-bezier(.22, 1, .36, 1),
    transform .36s cubic-bezier(.22, 1, .36, 1),
    visibility .36s step-end !important;
}
.mobile-menu.is-open {
  transform: translate3d(0, 0, 0);
  transition:
    opacity .42s cubic-bezier(.22, 1, .36, 1),
    transform .42s cubic-bezier(.22, 1, .36, 1),
    visibility 0s step-start !important;
}

.menu-category-panel {
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, -8px, 0);
  transition:
    max-height .68s cubic-bezier(.22, 1, .36, 1),
    opacity .32s ease,
    transform .32s ease !important;
}
.menu-category.is-open .menu-category-panel {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.booking-dialog,
.booking-dialog::backdrop,
.booking-panel,
.booking-confirmation,
.booking-step,
.booking-error {
  transition-timing-function: cubic-bezier(.22, 1, .36, 1) !important;
}

.slider-arrow,
.primary-action,
.secondary-action,
.text-button,
.menu-category-trigger,
.location-flow button,
.booking-open,
.footer-contact button {
  transition:
    transform .22s cubic-bezier(.22, 1, .36, 1),
    opacity .22s cubic-bezier(.22, 1, .36, 1),
    background-color .22s cubic-bezier(.22, 1, .36, 1),
    color .22s cubic-bezier(.22, 1, .36, 1),
    border-color .22s cubic-bezier(.22, 1, .36, 1),
    box-shadow .22s cubic-bezier(.22, 1, .36, 1) !important;
}

@media (max-width: 899px) {
  body.hero-ready .site-header,
  body.hero-ready .hero > *,
  body.hero-ready main > section:not(.hero),
  body.hero-ready footer {
    transition-duration: .76s !important;
  }

  .reveal {
    transform: translate3d(0, 18px, 0) scale(.997);
    transition-duration: .76s !important;
  }

  .mobile-menu {
    transform: translate3d(0, -8px, 0);
  }

  .menu-category-panel {
    transition:
      max-height .58s cubic-bezier(.22, 1, .36, 1),
      opacity .28s ease,
      transform .28s ease !important;
  }
}
