:root {
  --black: #080808;
  --ink: #11100f;
  --cream: #f2eadb;
  --paper: #fbf6ea;
  --blue: #49c8ff;
  --blue-deep: #087bb6;
  --red: #ee4b42;
  --pink: #ff4fa3;
  --green: #58ef88;
  --amber: #ffc14a;
  --purple: #b989ff;
  --wood: #7a4a2c;
  --green-dark: #324a34;
  --notice-height: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--black);
  color: var(--cream);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(16px, calc(15px + 0.18vw), 18px);
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  width: 100%;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  inset: var(--notice-height) 0 auto;
  height: 96px;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  padding: 0 3vw;
  background: rgba(6, 6, 6, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 1px 0 rgba(73, 200, 255, 0.45),
    0 5px 20px rgba(255, 79, 163, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  flex-direction: column;
  text-transform: none;
}

.brand-logo {
  display: block;
  width: 142px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: screen;
}

.mobile-brand-name,
.mobile-brand-address {
  display: block;
}

.mobile-header-phone {
  display: none;
}

.nav-toggle {
  display: none;
}

.mobile-brand-name {
  color: #fff;
  font-family: "Bodoni 72", Didot, "Bodoni MT", "Times New Roman", serif;
  font-size: 1.82rem;
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 0.92;
  text-transform: none;
}

.mobile-brand-address {
  margin-top: 6px;
  color: rgba(242, 234, 219, 0.62);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 0.9;
  letter-spacing: 0.04em;
}

.brand-sub {
  margin-top: 6px;
  font-size: 0.55rem;
  letter-spacing: 0.24em;
  color: rgba(242, 234, 219, 0.7);
}

nav {
  display: flex;
  gap: clamp(18px, 1.8vw, 34px);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

nav a {
  position: relative;
  padding: 14px 13px;
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

nav a:hover,
nav a:focus-visible,
nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(73, 200, 255, 0.36);
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 0 9px var(--blue);
  transition: right 180ms ease;
}

nav a:hover::after,
nav a:focus-visible::after {
  right: 0;
}

.header-cta {
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.65);
  padding: 12px 18px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 0 16px rgba(73, 200, 255, 0.25);
}

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(28px, 3.5vw, 58px);
  padding: 136px 3vw 76px;
  background:
    radial-gradient(circle at 16% 52%, rgba(73, 200, 255, 0.09), transparent 34%),
    radial-gradient(circle at 44% 76%, rgba(255, 79, 163, 0.08), transparent 30%),
    #020202;
}

.hero-grid {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-grid {
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255,255,255,.17) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.17) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, black, transparent 58%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.23em;
  line-height: 1.4;
  text-transform: uppercase;
}

.neon-blue {
  color: var(--blue);
  text-shadow: 0 0 12px rgba(73, 200, 255, 0.5);
}

.hero-mark {
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
  color: white;
}

.hero-logo {
  display: block;
  width: min(400px, 100%);
  max-height: 290px;
  margin: 0 auto 34px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.7));
}

.hero-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 9vw, 8.5rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.78;
  text-transform: uppercase;
  text-shadow:
    0 0 1px white,
    0 0 16px rgba(73, 200, 255, 0.15);
}

.hero-rule {
  height: 5px;
  margin-top: 16px;
  background: white;
  box-shadow: 0 7px 0 rgba(255, 255, 255, 0.36);
}

.hero-sub {
  align-self: center;
  margin-top: 19px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.78rem, 1.4vw, 1.12rem);
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.75rem, 4.1vw, 4.75rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  white-space: normal;
  text-shadow: 0 5px 22px rgba(0, 0, 0, 0.9);
}

.hero-copy {
  max-width: 570px;
  margin: 24px auto 32px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.65;
}

.hero-media {
  position: relative;
  z-index: 2;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  height: clamp(520px, calc(100svh - 220px), 700px);
  width: calc(100% + 1vw);
  place-items: center;
  justify-self: end;
  padding: clamp(16px, 1.6vw, 28px);
  background: #090909;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    12px 12px 0 rgba(0, 0, 0, 0.78),
    0 0 32px rgba(73, 200, 255, 0.12);
}

.hero-media::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -26px;
  background: url("images/flespys-food-spread.jpg") center / cover no-repeat;
  filter: blur(22px) saturate(0.9) brightness(0.52);
  transform: scale(1.07);
}

.hero-media::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 35%, transparent 65%, rgba(0, 0, 0, 0.2)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.28), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.28));
}

.hero-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 94%;
  height: 94%;
  margin: auto;
  object-fit: contain;
  background: transparent;
  filter: saturate(0.95) contrast(1.03) brightness(0.9);
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--cream);
  color: var(--black);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 0 24px rgba(242, 234, 219, 0.38);
}

.button-ghost {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: inset 0 0 18px rgba(73, 200, 255, 0.07), 0 0 12px rgba(73, 200, 255, 0.16);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(73, 200, 255, 0.1);
  box-shadow: 0 0 22px rgba(73, 200, 255, 0.35);
}

.hero-status {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 7px var(--green), 0 0 18px rgba(88, 239, 136, 0.68);
}

.hero-status div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.status-label {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-status strong {
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 5vw;
  bottom: 38px;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue span {
  display: inline-block;
  margin-left: 8px;
  color: var(--blue);
  font-size: 1.1rem;
}

.marquee {
  overflow: hidden;
  padding: 18px 0;
  background: var(--black);
  color: var(--cream);
  border-block: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 193, 74, 0.62),
    inset 0 -1px 0 rgba(255, 79, 163, 0.48);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 0;
  padding-left: 0;
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  white-space: nowrap;
  animation: slide 34s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  flex: none;
  align-items: center;
  gap: 0;
}

.marquee-cycle {
  display: flex;
  flex: none;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
}

.marquee-track i {
  color: var(--amber);
  text-shadow: 0 0 10px var(--amber);
  font-size: 0.7rem;
}

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

.section-dark {
  background: var(--black);
}

.happenings {
  padding: 110px 6vw 100px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 7vw;
  align-items: end;
  max-width: 1380px;
  margin: 0 auto 64px;
}

.section-heading h2,
.food-copy h2,
.scene-copy h2,
.visit-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.8vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.section-intro {
  max-width: 500px;
  margin: 0 0 10px;
  color: rgba(242, 234, 219, 0.62);
  font-size: 1.05rem;
  line-height: 1.7;
}

.event-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1380px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.event-card {
  min-height: 420px;
  position: relative;
  padding: 34px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transition: background 220ms ease;
}

.event-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -70px;
  top: -70px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.18;
  box-shadow: 0 0 30px currentColor;
}

.accent-red { color: var(--red); }
.accent-blue { color: var(--blue); }
.accent-cream { color: var(--cream); }
.accent-amber { color: var(--amber); }
.accent-purple { color: var(--purple); }

.accent-red {
  background: radial-gradient(circle at 92% 8%, rgba(255, 79, 163, 0.13), transparent 34%);
}

.accent-blue {
  background: radial-gradient(circle at 92% 8%, rgba(73, 200, 255, 0.13), transparent 34%);
}

.accent-amber {
  background: radial-gradient(circle at 92% 8%, rgba(255, 193, 74, 0.13), transparent 34%);
}

.accent-purple {
  background: radial-gradient(circle at 92% 8%, rgba(185, 137, 255, 0.14), transparent 34%);
}

.event-card:hover {
  background: rgba(255, 255, 255, 0.035);
}

.event-number {
  display: block;
  margin-bottom: 94px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.event-kicker {
  margin: 0 0 10px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.event-card h3 {
  margin: 0 0 18px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.event-card > p:not(.event-kicker) {
  max-width: 360px;
  margin: 0 0 28px;
  color: rgba(242, 234, 219, 0.59);
  line-height: 1.55;
}

.event-card a {
  display: inline-block;
  color: var(--cream);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
  text-shadow: 0 0 10px currentColor;
}

.schedule-note {
  max-width: 1380px;
  margin: 18px auto 0;
  color: rgba(242, 234, 219, 0.4);
  font-size: 0.72rem;
}

.live-updates {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
  max-width: 1380px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 72px);
  background:
    radial-gradient(circle at 8% 12%, rgba(185, 137, 255, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(73, 200, 255, 0.08), transparent 44%),
    #111;
  border: 1px solid rgba(185, 137, 255, 0.34);
  box-shadow:
    0 0 30px rgba(185, 137, 255, 0.08),
    inset 0 0 26px rgba(73, 200, 255, 0.04);
}

.live-updates-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.live-updates-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 28px 0 34px;
  color: rgba(242, 234, 219, 0.64);
  font-size: 1rem;
  line-height: 1.75;
}

.facebook-page-feed {
  width: 100%;
  max-width: 500px;
  min-height: 760px;
  justify-self: end;
  overflow: hidden;
  padding: 0;
  background: transparent;
  border: 2px solid var(--blue);
  box-shadow: 0 0 22px rgba(73, 200, 255, 0.16);
}

.facebook-page-feed iframe {
  display: block;
  width: 100% !important;
  height: 760px;
  max-width: 500px !important;
  background: transparent;
  overflow: hidden !important;
}

.food-section {
  position: relative;
  background:
    radial-gradient(circle at 14% 18%, rgba(185, 137, 255, 0.08), transparent 25%),
    radial-gradient(circle at 88% 72%, rgba(88, 239, 136, 0.06), transparent 26%),
    #0b0b0b;
  color: var(--cream);
  padding: 0 6vw 110px;
}

.checker-band {
  height: 18px;
  margin: 0 -6vw 96px;
  background-color: #fff;
  background-image:
    linear-gradient(45deg, #111 25%, transparent 25%, transparent 75%, #111 75%),
    linear-gradient(45deg, #111 25%, transparent 25%, transparent 75%, #111 75%);
  background-position: 0 0, 9px 9px;
  background-size: 18px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.menu-intro {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 7vw;
  align-items: end;
  max-width: 1380px;
  margin: 0 auto 72px;
}

.menu-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 6.8vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.menu-intro-copy p {
  margin: 0 0 20px;
  color: rgba(242, 234, 219, 0.72);
  font-size: 1.03rem;
  line-height: 1.7;
}

.menu-intro-copy span {
  display: block;
  padding-top: 18px;
  border-top: 1px solid rgba(242, 234, 219, 0.24);
  color: rgba(242, 234, 219, 0.48);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.55;
  text-transform: uppercase;
}

.menu-switcher {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  max-width: 1380px;
  margin: 0 auto 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-picker {
  display: none;
}

.menu-tab {
  --tab-neon: var(--blue);
  min-height: 74px;
  padding: 14px 12px;
  color: rgba(242, 234, 219, 0.68);
  background: #0d0d0d;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font: inherit;
  font-size: 0.61rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.menu-tab:nth-child(2) { --tab-neon: var(--pink); }
.menu-tab:nth-child(3) { --tab-neon: var(--amber); }
.menu-tab:nth-child(4) { --tab-neon: var(--green); }
.menu-tab:nth-child(5) { --tab-neon: var(--purple); }
.menu-tab:nth-child(6) { --tab-neon: var(--red); }

.menu-tab:hover,
.menu-tab:focus-visible,
.menu-tab.is-active {
  position: relative;
  z-index: 1;
  color: var(--tab-neon);
  background: rgba(255, 255, 255, 0.025);
  box-shadow:
    inset 0 -3px 0 var(--tab-neon),
    inset 0 0 24px color-mix(in srgb, var(--tab-neon) 9%, transparent),
    0 0 16px color-mix(in srgb, var(--tab-neon) 24%, transparent);
  text-shadow: 0 0 10px var(--tab-neon);
}

.menu-grid {
  display: block;
  max-width: 1380px;
  margin: 0 auto;
}

.menu-grid [hidden] {
  display: none !important;
}

.menu-order-cta {
  display: flex;
  max-width: 1380px;
  margin: 34px auto 0;
  scroll-margin-top: 120px;
  padding: clamp(24px, 3vw, 38px);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--cream);
  background:
    linear-gradient(110deg, rgba(73, 200, 255, 0.11), transparent 42%),
    #0e0e0e;
  border: 1px solid var(--blue);
  box-shadow: 8px 8px 0 #000, 0 0 24px rgba(73, 200, 255, 0.16);
}

.menu-order-cta span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-order-cta h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.menu-order-button {
  flex: 0 0 auto;
  color: #050505;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 22px rgba(73, 200, 255, 0.34);
}

.menu-order-button:hover,
.menu-order-button:focus-visible {
  color: #050505;
  background: var(--cream);
  border-color: var(--cream);
  box-shadow: 0 0 28px rgba(73, 200, 255, 0.46);
}

.menu-order-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.menu-call-button {
  color: var(--blue);
  background: transparent;
  border-color: var(--blue);
}

.menu-call-button:hover,
.menu-call-button:focus-visible {
  color: #050505;
  background: var(--cream);
  border-color: var(--cream);
  box-shadow: 0 0 28px rgba(73, 200, 255, 0.32);
}

.menu-category {
  --menu-neon: var(--blue);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(26px, 4vw, 58px);
  padding: clamp(26px, 3vw, 42px);
  color: var(--cream);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--menu-neon) 7%, transparent), transparent 34%),
    #111;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    9px 9px 0 #000,
    0 0 22px color-mix(in srgb, var(--menu-neon) 15%, transparent);
}

#menu-baskets { --menu-neon: var(--pink); }
#menu-tacos { --menu-neon: var(--amber); }
#menu-apps { --menu-neon: var(--green); }
#menu-wings { --menu-neon: var(--purple); }
#menu-sweets { --menu-neon: var(--red); }

.menu-category-wide {
  grid-column: auto;
}

.menu-category-heading {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 25px;
  border-bottom: 3px solid var(--menu-neon);
  box-shadow: 0 5px 16px color-mix(in srgb, var(--menu-neon) 12%, transparent);
}

.menu-category-heading span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--black);
  background: var(--menu-neon);
  box-shadow: 0 0 14px color-mix(in srgb, var(--menu-neon) 58%, transparent);
  font-size: 0.61rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.menu-category-heading h3 {
  margin: -7px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.menu-item {
  padding: 23px 0;
  border-bottom: 1px dashed rgba(242, 234, 219, 0.24);
}

.menu-item[role="button"] {
  cursor: pointer;
  transition: background 160ms ease, box-shadow 160ms ease;
}

.menu-item[role="button"]:hover,
.menu-item[role="button"]:focus-visible,
.menu-item.is-gallery-active {
  background: color-mix(in srgb, var(--menu-neon) 8%, transparent);
  box-shadow: inset 4px 0 0 var(--menu-neon);
}

.menu-item[role="button"]:focus-visible {
  outline: 2px solid var(--menu-neon);
  outline-offset: 3px;
}

.menu-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.menu-item > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: baseline;
}

.menu-item h4 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.menu-item strong {
  color: var(--menu-neon);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-shadow: 0 0 9px color-mix(in srgb, var(--menu-neon) 68%, transparent);
}

.menu-item p {
  max-width: 650px;
  margin: 8px 0 0;
  color: rgba(242, 234, 219, 0.62);
  font-size: 0.83rem;
  line-height: 1.58;
}

.menu-photo-hint {
  display: inline-block;
  margin-top: 13px;
  color: var(--menu-neon);
  font-size: 0.56rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0 9px color-mix(in srgb, var(--menu-neon) 56%, transparent);
}

.menu-feature {
  margin: 18px 0 0;
  padding: 20px;
  color: var(--paper);
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid color-mix(in srgb, var(--menu-neon) 58%, transparent);
  box-shadow: inset 0 0 20px color-mix(in srgb, var(--menu-neon) 6%, transparent);
}

.menu-feature p {
  color: rgba(242, 234, 219, 0.68);
}

.wings-layout {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 0.7fr 0.7fr 1.6fr;
  gap: 18px;
  align-items: stretch;
}

.wings-layout .menu-feature {
  margin-top: 24px;
}

.sauce-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid rgba(242, 234, 219, 0.24);
  border-left: 1px solid rgba(242, 234, 219, 0.24);
}

.sauce-list span {
  padding: 13px 15px;
  border-right: 1px solid rgba(242, 234, 219, 0.24);
  border-bottom: 1px solid rgba(242, 234, 219, 0.24);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dessert-card {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background:
    linear-gradient(120deg, rgba(238, 75, 66, 0.12), transparent 45%),
    var(--black);
  box-shadow:
    9px 9px 0 #000,
    0 0 22px rgba(238, 75, 66, 0.16);
}

.dessert-card .menu-category-heading {
  border-color: var(--red);
}

.dessert-card .menu-category-heading span {
  color: var(--black);
  background: var(--red);
}

.dessert-card .menu-item p {
  color: rgba(242, 234, 219, 0.65);
}

.dessert-card > .menu-item {
  grid-column: 1 / -1;
}

.menu-category > .wings-layout {
  grid-column: 1 / -1;
}

.menu-item-photo {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  padding: 0;
  aspect-ratio: 1;
  background: #080808;
  border: 1px solid color-mix(in srgb, var(--menu-neon) 56%, transparent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--menu-neon) 12%, transparent);
}

.menu-item-photo[hidden] {
  display: none;
}

.menu-item-photo img {
  width: 100%;
  height: 100%;
  max-height: none;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  background: #080808;
}

.menu-item-photo img.menu-item-logo {
  padding: clamp(28px, 6vw, 72px);
  object-fit: contain;
}

.menu-item-photo span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: block;
  padding: 7px 9px;
  color: #fff;
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid color-mix(in srgb, var(--menu-neon) 60%, transparent);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.food-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  max-width: 1380px;
  margin: 0 auto;
}

.food-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.food-copy h2 {
  font-size: clamp(3.4rem, 6.2vw, 6.4rem);
}

.food-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 34px 0 24px;
  color: rgba(17, 16, 15, 0.68);
  font-size: 1.05rem;
  line-height: 1.75;
}

.text-link {
  display: inline-block;
  border-bottom: 2px solid var(--black);
  padding: 8px 0;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.favorites-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(17, 16, 15, 0.3);
  border-left: 1px solid rgba(17, 16, 15, 0.3);
}

.favorite {
  min-height: 310px;
  padding: 32px;
  border-right: 1px solid rgba(17, 16, 15, 0.3);
  border-bottom: 1px solid rgba(17, 16, 15, 0.3);
}

.favorite-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 82px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.favorite-topline em {
  color: var(--red);
  font-style: normal;
}

.favorite h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.favorite p {
  margin: 0;
  color: rgba(17, 16, 15, 0.6);
  line-height: 1.55;
}

.scene-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: auto;
  gap: 28px;
  padding: 100px 6vw;
  background: #111;
  max-width: 1600px;
  margin: 0 auto;
}

.scene-photo {
  position: relative;
  overflow: hidden;
  background: #222;
}

.scene-photo img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}

.scene-photo:hover img {
  transform: scale(1.025);
}

.scene-photo-large {
  min-height: 620px;
}

.scene-photo-small {
  min-height: 330px;
}

.photo-label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 10px 13px;
  background: rgba(0,0,0,.78);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.patio-gallery img {
  object-fit: contain;
  background: #0b0b0b;
}

.patio-gallery-bar {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  color: var(--cream);
  background: rgba(0, 0, 0, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.patio-gallery-bar button {
  width: 42px;
  height: 42px;
  color: var(--amber);
  background: transparent;
  border: 1px solid rgba(255, 193, 74, 0.62);
  font: inherit;
  font-size: 1.05rem;
  cursor: pointer;
}

.patio-gallery-bar button:hover,
.patio-gallery-bar button:focus-visible {
  color: var(--black);
  background: var(--amber);
}

.patio-gallery-bar > span:not(.patio-gallery-count) {
  overflow: hidden;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.patio-gallery-count {
  color: rgba(242, 234, 219, 0.7);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.scene-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 45px 5vw 50px;
  background: #171717;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.scene-copy h2 {
  font-size: clamp(3rem, 5.2vw, 5.6rem);
}

.scene-copy > p:not(.eyebrow) {
  margin: 28px 0;
  color: rgba(242, 234, 219, .62);
  line-height: 1.7;
}

.scene-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.scene-details span {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, .25);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.scene-details span:nth-child(1) {
  color: var(--amber);
  border-color: rgba(255, 193, 74, 0.55);
  box-shadow: inset 0 0 12px rgba(255, 193, 74, 0.06);
}

.scene-details span:nth-child(2) {
  color: var(--pink);
  border-color: rgba(255, 79, 163, 0.5);
  box-shadow: inset 0 0 12px rgba(255, 79, 163, 0.06);
}

.scene-details span:nth-child(3) {
  color: var(--green);
  border-color: rgba(88, 239, 136, 0.5);
  box-shadow: inset 0 0 12px rgba(88, 239, 136, 0.06);
}

.scene-details span:nth-child(4) {
  color: var(--blue);
  border-color: rgba(73, 200, 255, 0.5);
  box-shadow: inset 0 0 12px rgba(73, 200, 255, 0.06);
}

.lottery-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(38px, 7vw, 110px);
  align-items: center;
  overflow: hidden;
  padding: 110px 6vw;
  background:
    radial-gradient(circle at 14% 24%, rgba(255, 79, 163, 0.2), transparent 30%),
    radial-gradient(circle at 82% 76%, rgba(73, 200, 255, 0.16), transparent 32%),
    #050505;
  border-block: 1px solid rgba(185, 137, 255, 0.42);
}

.lottery-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 54px 54px;
}

.lottery-copy .eyebrow {
  color: var(--pink);
  text-shadow: 0 0 12px rgba(255, 79, 163, 0.64);
}

.lottery-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 6.8vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.lottery-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 30px 0;
  color: rgba(242, 234, 219, 0.7);
  font-size: 1.02rem;
  line-height: 1.72;
}

.lottery-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lottery-details span {
  padding: 10px 12px;
  color: var(--blue);
  border: 1px solid rgba(73, 200, 255, 0.54);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.lottery-details span:nth-child(2) {
  color: var(--pink);
  border-color: rgba(255, 79, 163, 0.54);
}

.lottery-details span:nth-child(3) {
  color: var(--green);
  border-color: rgba(88, 239, 136, 0.54);
}

.lottery-photo {
  position: relative;
  margin: 0;
  padding: 14px;
  background: #090909;
  border: 1px solid rgba(73, 200, 255, 0.72);
  box-shadow: 10px 10px 0 #000, 0 0 36px rgba(185, 137, 255, 0.25);
}

.lottery-photo img {
  max-height: 680px;
  object-fit: contain;
}

.lottery-photo figcaption {
  padding: 14px 4px 2px;
  color: rgba(242, 234, 219, 0.62);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
}

.reviews-section {
  position: relative;
  overflow: hidden;
  padding: 100px 6vw 92px;
  color: var(--cream);
  background:
    radial-gradient(circle at 22% 35%, rgba(255, 79, 163, 0.15), transparent 28%),
    radial-gradient(circle at 78% 70%, rgba(73, 200, 255, 0.12), transparent 28%),
    #090909;
  border-block: 1px solid rgba(255, 255, 255, 0.22);
}

.reviews-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 14px;
  background-color: #fff;
  background-image:
    linear-gradient(45deg, #111 25%, transparent 25%, transparent 75%, #111 75%),
    linear-gradient(45deg, #111 25%, transparent 25%, transparent 75%, #111 75%);
  background-position: 0 0, 7px 7px;
  background-size: 14px 14px;
}

.reviews-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.reviews-heading h2 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 7rem);
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
  padding: 17px 20px;
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.google-rating strong {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.google-rating div {
  display: grid;
  gap: 5px;
}

.google-rating span,
.review-stars {
  color: var(--amber);
  letter-spacing: 0.08em;
  text-shadow: 0 0 13px rgba(255, 193, 74, 0.44);
}

.google-rating small {
  color: rgba(242, 234, 219, 0.62);
  font-size: 0.57rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  min-height: 270px;
  padding: 30px;
  background: rgba(15, 15, 15, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 7px 7px 0 #000;
}

.review-card:nth-child(1) {
  border-color: rgba(255, 79, 163, 0.48);
}

.review-card:nth-child(2) {
  border-color: rgba(73, 200, 255, 0.48);
}

.review-card:nth-child(3) {
  border-color: rgba(88, 239, 136, 0.48);
}

.review-stars {
  margin-bottom: 34px;
  font-size: 0.9rem;
}

.review-stars span {
  color: rgba(242, 234, 219, 0.2);
  text-shadow: none;
}

.review-card blockquote {
  margin: 0;
}

.review-card blockquote p {
  margin: 0 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.review-card blockquote footer {
  color: rgba(242, 234, 219, 0.58);
  font-size: .64rem;
  font-weight: 950;
  letter-spacing: .12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.reviews-link {
  position: relative;
  z-index: 1;
  margin-top: 34px;
}

.faq-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 8vw, 130px);
  padding: 110px 6vw;
  color: var(--cream);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 8% 16%, rgba(255, 79, 163, 0.18), transparent 25%),
    radial-gradient(circle at 84% 72%, rgba(73, 200, 255, 0.12), transparent 28%),
    #050505;
  background-size: 54px 54px, 54px 54px, auto, auto, auto;
  border-bottom: 1px solid rgba(73, 200, 255, 0.42);
  box-shadow: inset 0 -12px 30px rgba(73, 200, 255, 0.06);
}

.faq-intro {
  position: sticky;
  top: 132px;
  align-self: start;
}

.faq-intro h2 {
  margin: 0;
  color: #fff7fb;
  font-family: "Monoton", "Arial Black", sans-serif;
  font-size: clamp(2.25rem, 4.25vw, 4.8rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.08;
  text-transform: uppercase;
  text-shadow:
    0 0 2px white,
    0 0 8px var(--pink),
    0 0 20px rgba(255, 79, 163, 0.92),
    0 0 38px rgba(185, 137, 255, 0.68),
    0 0 62px rgba(73, 200, 255, 0.28);
}

.faq-intro .eyebrow {
  color: var(--blue);
  text-shadow: 0 0 12px rgba(73, 200, 255, 0.72);
}

.faq-intro > p:not(.eyebrow) {
  max-width: 430px;
  margin: 30px 0 22px;
  color: rgba(242, 234, 219, 0.7);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-intro > a {
  display: inline-block;
  padding-bottom: 5px;
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(73, 200, 255, 0.55);
  box-shadow: 0 8px 12px -10px rgba(73, 200, 255, 0.9);
}

.faq-list {
  border-top: 2px solid var(--blue);
  box-shadow: 0 -8px 20px -14px var(--blue);
}

.faq-item {
  --faq-neon: var(--blue);
  border-bottom: 1px solid color-mix(in srgb, var(--faq-neon) 42%, transparent);
}

.faq-item:nth-child(6n + 2) {
  --faq-neon: var(--pink);
}

.faq-item:nth-child(6n + 3) {
  --faq-neon: var(--amber);
}

.faq-item:nth-child(6n + 4) {
  --faq-neon: var(--green);
}

.faq-item:nth-child(6n + 5) {
  --faq-neon: var(--purple);
}

.faq-item:nth-child(6n) {
  --faq-neon: var(--red);
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 27px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--cream);
  cursor: pointer;
  list-style: none;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--faq-neon);
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid var(--faq-neon);
  font-family: Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
  box-shadow: 0 0 12px color-mix(in srgb, var(--faq-neon) 38%, transparent);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.faq-item[open] summary {
  color: var(--faq-neon);
  text-shadow: 0 0 14px color-mix(in srgb, var(--faq-neon) 55%, transparent);
}

.faq-item[open] summary::after {
  color: #050505;
  background: var(--faq-neon);
  box-shadow: 0 0 22px color-mix(in srgb, var(--faq-neon) 72%, transparent);
  transform: rotate(45deg);
}

.faq-item summary:hover::after,
.faq-item summary:focus-visible::after {
  color: #050505;
  background: var(--faq-neon);
}

.faq-answer {
  padding: 0 62px 28px 0;
}

.faq-answer p {
  max-width: 760px;
  margin: 0;
  color: rgba(242, 234, 219, 0.7);
  font-size: 0.98rem;
  line-height: 1.75;
}

.faq-answer a {
  color: var(--faq-neon);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.visit-section {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  min-height: 760px;
  background: var(--paper);
  color: var(--ink);
}

.visit-photo {
  min-height: 760px;
}

.visit-photo img {
  height: 100%;
  object-fit: cover;
}

.visit-panel {
  padding: 100px clamp(34px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-map {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  background: #111;
  border-left: 1px solid rgba(73, 200, 255, .55);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 760px;
  border: 0;
  filter: saturate(.82) contrast(1.04);
}

.logo-map-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 104px;
  filter: drop-shadow(0 8px 8px rgba(0, 0, 0, .5)) drop-shadow(0 0 9px rgba(73, 200, 255, .85));
  pointer-events: none;
  transform: translate(-50%, -70%);
}

.logo-marker-face {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 104px;
  height: 76px;
  padding: 7px;
  background: #080808;
  border: 3px solid #fff;
  border-radius: 15px;
  outline: 2px solid #49c8ff;
}

.logo-marker-face img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
}

.logo-marker-point {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  margin: -15px auto 0;
  background: #080808;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  box-shadow: 2px 2px 0 #49c8ff;
  transform: rotate(45deg);
}

.map-directions {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 14px 17px;
  color: #fff;
  background: #080808;
  border: 1px solid var(--blue);
  box-shadow: 0 5px 18px rgba(0, 0, 0, .3);
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.visit-panel h2 {
  font-size: clamp(4rem, 7.5vw, 8rem);
}

.visit-page-section .visit-panel h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7.5vw, 8rem);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .86;
}

.visit-page-section .breadcrumbs {
  margin-bottom: 26px;
  color: rgba(17, 16, 15, .48);
}

.visit-page-section .breadcrumbs a {
  color: var(--blue-deep);
}

.visit-info {
  margin: 50px 0 38px;
  border-top: 1px solid rgba(17,16,15,.32);
}

.visit-info > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(17,16,15,.32);
}

.visit-info span {
  font-size: .6rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.visit-info strong,
.visit-info a {
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
}

.visit-info small {
  grid-column: 2;
  color: rgba(17,16,15,.5);
  font-size: .67rem;
}

.button-dark {
  background: var(--black);
  color: var(--cream);
}

.button-outline-dark {
  color: var(--black);
  border-color: var(--black);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 50px;
  align-items: end;
  padding: 60px 6vw 80px;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.18);
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand span {
  font-family: Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  letter-spacing: -.05em;
}

.footer-brand small {
  margin-top: 8px;
  color: rgba(242,234,219,.5);
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 22px;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-footer > p {
  justify-self: end;
  margin: 0;
  color: var(--blue);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-facebook {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 12px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(73, 200, 255, 0.42);
}

.footer-facebook span {
  color: rgba(242, 234, 219, 0.68);
  font-size: 0.72rem;
  line-height: 1.6;
}

.footer-facebook strong {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(73, 200, 255, 0.4);
}

.footer-facebook:hover strong,
.footer-facebook:focus-visible strong {
  color: var(--cream);
}

.mobile-actions {
  display: none;
}

@media (min-width: 981px) and (max-width: 1199px) {
  .site-header {
    grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
    padding-inline: 2vw;
  }

  nav {
    gap: 8px;
    font-size: 0.72rem;
  }

  nav a {
    padding: 11px 7px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    height: 84px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    justify-self: end;
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    color: var(--cream);
    background: rgba(8, 8, 8, 0.92);
    border: 1px solid rgba(73, 200, 255, 0.62);
    cursor: pointer;
  }

  .nav-toggle-lines,
  .nav-toggle-lines::before,
  .nav-toggle-lines::after {
    display: block;
    width: 21px;
    height: 2px;
    background: currentColor;
    box-shadow: 0 0 8px rgba(73, 200, 255, 0.5);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-toggle-lines {
    position: relative;
  }

  .nav-toggle-lines::before,
  .nav-toggle-lines::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .nav-toggle-lines::before {
    transform: translateY(-7px);
  }

  .nav-toggle-lines::after {
    transform: translateY(7px);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-lines {
    background: transparent;
    box-shadow: none;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
    transform: rotate(-45deg);
  }

  .site-header nav {
    position: fixed;
    z-index: 1;
    top: calc(var(--notice-height) + 84px);
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-height: calc(100dvh - var(--notice-height) - 84px);
    margin: 0;
    padding: 18px 3vw 24px;
    overflow-y: auto;
    color: var(--cream);
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid rgba(73, 200, 255, 0.55);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.58);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-header nav a {
    display: grid;
    place-items: center;
    min-height: 52px;
    padding: 12px 10px;
    text-align: center;
  }

  .site-header.nav-open nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  html.nav-is-open {
    overflow: hidden;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 140px 6vw 94px;
  }

  .hero-content {
    width: 100%;
    max-width: 720px;
  }

  .hero-media {
    height: auto;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 1273 / 696;
    justify-self: center;
  }

  .section-heading,
  .menu-intro,
  .food-layout,
  .scene-section,
  .lottery-section,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 28px;
  }

  .event-list {
    grid-template-columns: 1fr;
  }

  .event-card {
    min-height: 340px;
  }

  .menu-switcher {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .menu-category-wide {
    grid-column: auto;
  }

  .wings-layout {
    grid-template-columns: 1fr 1fr;
  }

  .sauce-list {
    grid-column: 1 / -1;
  }

  .event-number,
  .favorite-topline {
    margin-bottom: 58px;
  }

  .food-copy {
    position: static;
  }

  .scene-photo-large {
    grid-row: auto;
    min-height: 560px;
  }

  .scene-copy {
    grid-row: 2;
  }

  .visit-photo {
    min-height: 520px;
  }

  .location-map,
  .location-map iframe {
    min-height: 560px;
  }

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

  .review-card:last-child {
    grid-column: 1 / -1;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-intro {
    position: static;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer > p {
    justify-self: start;
  }

  .footer-facebook {
    width: 100%;
  }
}

@media (max-width: 640px) {
  :root {
    --notice-height: 0px;
  }

  html {
    scroll-padding-top: 102px;
  }

  body {
    padding-bottom: 56px;
  }

  section[id],
  #live-updates {
    scroll-margin-top: 102px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    height: 82px;
    padding-inline: 14px;
  }

  .site-header nav {
    top: 82px;
    grid-template-columns: 1fr;
    max-height: calc(100dvh - 82px - 56px);
    padding: 14px 14px 20px;
  }

  .site-header nav a {
    min-height: 48px;
  }

  .brand {
    min-width: 0;
    justify-self: start;
  }

  .brand-name {
    font-size: 1.3rem;
  }

  .brand-logo {
    display: none;
  }

  .mobile-brand-name,
  .mobile-header-phone {
    display: block;
  }

  .mobile-brand-name {
    overflow: hidden;
    color: #fff;
    font-family: "Bodoni 72", Didot, "Bodoni MT", "Times New Roman", serif;
    font-size: 1.58rem;
    font-weight: 400;
    letter-spacing: 0.035em;
    line-height: 0.92;
    text-overflow: ellipsis;
    text-transform: none;
    white-space: nowrap;
  }

  .mobile-brand-address {
    overflow: hidden;
    margin-top: 6px;
    color: rgba(242, 234, 219, 0.58);
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .mobile-header-phone {
    justify-self: end;
    padding: 10px 9px;
    color: var(--blue);
    border: 1px solid rgba(73, 200, 255, 0.56);
    font-size: 0.61rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    align-items: initial;
    gap: 24px;
    padding: 112px 20px 72px;
  }

  .hero-media {
    padding: 10px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-logo {
    width: min(330px, 86vw);
    max-height: 230px;
    margin-bottom: 22px;
  }

  .hero-name {
    font-size: clamp(3.2rem, 18vw, 5.6rem);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 9.5vw, 3rem);
    letter-spacing: -0.04em;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .hero-actions {
    display: grid;
  }

  .hero-status {
    left: 16px;
    right: 16px;
    bottom: 16px;
    gap: 10px;
    padding: 12px 13px;
  }

  .hero-status strong {
    font-size: 0.69rem;
    line-height: 1.25;
    white-space: normal;
  }

  .scroll-cue {
    display: none;
  }

  .happenings,
  .scene-section {
    padding: 78px 20px;
  }

  .live-updates {
    grid-template-columns: 1fr;
    margin-top: 58px;
    padding: 30px 12px 12px;
  }

  .facebook-page-feed {
    width: 100%;
    max-width: 500px;
    min-height: 760px;
    justify-self: center;
    margin-inline: auto;
  }

  .facebook-page-feed iframe {
    width: 100% !important;
    height: 760px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .menu-intro h2,
  .food-copy h2,
  .scene-copy h2,
  .visit-panel h2 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .event-card {
    padding: 26px;
  }

  .food-section {
    padding: 0 20px 78px;
  }

  .menu-intro {
    gap: 30px;
    margin-bottom: 48px;
  }

  .menu-category {
    grid-template-columns: 1fr;
    padding: 25px 20px;
    box-shadow:
      6px 6px 0 #000,
      0 0 18px color-mix(in srgb, var(--menu-neon) 14%, transparent);
  }

  .menu-order-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
    margin-top: 24px;
    padding: 24px 20px;
    text-align: center;
  }

  .menu-order-button {
    width: 100%;
    min-width: 0;
  }

  .menu-order-actions {
    display: grid;
    width: 100%;
    gap: 10px;
  }

  .menu-call-button {
    width: 100%;
    min-width: 0;
  }

  .menu-switcher {
    display: none;
  }

  .mobile-menu-picker {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
  }

  .mobile-menu-picker span {
    color: rgba(242, 234, 219, 0.62);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .mobile-menu-picker select {
    width: 100%;
    min-height: 58px;
    padding: 0 48px 0 16px;
    color: var(--cream);
    background: #101010;
    border: 1px solid var(--blue);
    border-radius: 0;
    font: inherit;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .menu-tab {
    min-height: 64px;
    padding: 11px 8px;
    font-size: 0.56rem;
  }

  .menu-category-heading {
    grid-template-columns: 30px 1fr;
    gap: 12px;
  }

  .menu-category-heading h3 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .menu-item > div {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .menu-item h4 {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .menu-item[role="button"] {
    margin-inline: -12px;
    padding-inline: 12px;
  }

  .menu-item-photo {
    width: calc(100% + 24px);
    margin: 18px -12px 0;
  }

  .menu-item-photo img {
    width: 100%;
    height: 100%;
    max-height: none;
    aspect-ratio: 1;
    object-fit: cover;
  }

  .wings-layout {
    grid-template-columns: 1fr;
  }

  .sauce-list {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .checker-band {
    margin: 0 -20px 66px;
    height: 14px;
    background-size: 14px 14px;
    background-position: 0 0, 7px 7px;
  }

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

  .favorite {
    min-height: 260px;
    padding: 25px;
  }

  .scene-section {
    gap: 14px;
  }

  .scene-photo-large {
    min-height: 420px;
  }

  .patio-gallery-bar {
    left: 10px;
    right: 10px;
    bottom: 10px;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .patio-gallery-count {
    display: none;
  }

  .scene-photo-small {
    min-height: 260px;
  }

  .scene-copy {
    padding: 38px 26px;
  }

  .lottery-section {
    gap: 42px;
    padding: 78px 20px;
  }

  .lottery-copy h2 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .lottery-photo {
    padding: 9px;
  }

  .reviews-section {
    padding: 82px 20px 74px;
  }

  .reviews-heading {
    align-items: start;
    flex-direction: column;
    margin-bottom: 34px;
  }

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

  .review-card:last-child {
    grid-column: auto;
  }

  .review-card {
    min-height: 0;
    padding: 26px;
  }

  .review-card blockquote p {
    font-size: clamp(1.4rem, 7vw, 1.75rem);
  }

  .faq-section {
    padding: 78px 20px;
  }

  .faq-item summary {
    gap: 16px;
    padding: 23px 0;
  }

  .faq-answer {
    padding-right: 0;
  }

  .visit-photo {
    min-height: 390px;
  }

  .visit-panel {
    padding: 72px 20px;
  }

  .visit-page-section .visit-panel h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  .location-map,
  .location-map iframe {
    min-height: 440px;
  }

  .location-map .logo-map-marker {
    transform: translate(-50%, -68%) scale(.88);
  }

  .location-map .map-directions {
    right: 12px;
    bottom: 12px;
    left: 12px;
    text-align: center;
  }

  .visit-info > div {
    grid-template-columns: 82px 1fr;
  }

  .visit-actions {
    display: grid;
  }

  .site-footer {
    padding: 55px 20px 118px;
    gap: 34px;
  }

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

  .footer-facebook {
    display: grid;
    justify-items: center;
    gap: 12px;
    text-align: center;
  }

  .mobile-actions {
    position: fixed;
    z-index: 60;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--cream);
    color: var(--black);
    border-top: 3px solid var(--black);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    min-height: 56px;
    font-size: .68rem;
    font-weight: 950;
    letter-spacing: .14em;
    text-transform: uppercase;
  }

  .mobile-actions a + a {
    color: var(--cream);
    background: var(--black);
    border-left: 1px solid rgba(255,255,255,.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee-track {
    animation: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
