:root {
  color-scheme: dark;
  --black: #050505;
  --ink: #10100e;
  --cream: #fff4d7;
  --paper: #f8e8b8;
  --olive: #7fa538;
  --olive-dark: #354616;
  --gold: #ffc857;
  --magenta: #ee3f8c;
  --aqua: #23c7b7;
  --red: #ef4a38;
  --blue: #335cff;
  --line: #050505;
  --shadow: 10px 10px 0 #050505;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 15% 18%, rgba(238, 63, 140, .28), transparent 26%),
    radial-gradient(circle at 84% 8%, rgba(35, 199, 183, .22), transparent 24%),
    linear-gradient(135deg, #0b0b0a, #18120f 48%, #080909);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .16;
  background-image: radial-gradient(var(--cream) 1px, transparent 1.4px);
  background-size: 9px 9px;
  mix-blend-mode: overlay;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 21;
  pointer-events: none;
  opacity: .08;
  background: repeating-linear-gradient(0deg, #fff 0 1px, transparent 1px 5px);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 56px);
}

.site-header[data-scrolled="true"] {
  background: rgba(5, 5, 5, .86);
  border-bottom: 4px solid var(--line);
}

.brand {
  width: 118px;
  padding: 5px;
  background: var(--cream);
  border: 4px solid var(--line);
  box-shadow: 8px 8px 0 var(--olive);
  transform: rotate(-2deg);
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: 6px;
  padding: 8px;
  background: var(--cream);
  border: 4px solid var(--line);
  box-shadow: var(--shadow);
  color: var(--black);
}

.site-nav a,
.reserve-link,
.button,
.tab {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 3px solid var(--line);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav a {
  border-color: transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--gold);
  border-color: var(--line);
}

.reserve-link,
.button.primary {
  color: var(--black);
  background: var(--olive);
  box-shadow: 5px 5px 0 var(--line);
}

.reserve-link:hover,
.button.primary:hover {
  background: var(--gold);
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--line);
}

.button.secondary {
  background: var(--cream);
  color: var(--black);
  box-shadow: 5px 5px 0 var(--line);
}

.button.secondary:hover {
  background: var(--magenta);
  color: var(--cream);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  background: var(--cream);
  border: 4px solid var(--line);
  box-shadow: 5px 5px 0 var(--line);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  margin: 4px auto;
  background: var(--line);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 134px clamp(18px, 5vw, 72px) 74px;
  overflow: hidden;
  border-bottom: 6px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 200, 87, .94) 0 28%, transparent 28.2%),
    linear-gradient(152deg, transparent 0 54%, rgba(238, 63, 140, .8) 54.2% 72%, transparent 72.2%),
    radial-gradient(circle at 74% 28%, rgba(35, 199, 183, .72), transparent 22%),
    #14110f;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -10%;
  background-image:
    linear-gradient(30deg, rgba(255,255,255,.08) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.08) 87.5%),
    linear-gradient(150deg, rgba(255,255,255,.08) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.08) 87.5%);
  background-size: 58px 102px;
  animation: paperShift 15s linear infinite;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,5,5,.82), rgba(5,5,5,.34) 52%, rgba(5,5,5,.58));
}

.comic-burst {
  position: absolute;
  border: 5px solid var(--line);
  background: var(--cream);
  clip-path: polygon(50% 0, 58% 30%, 88% 12%, 70% 42%, 100% 50%, 70% 58%, 88% 88%, 58% 70%, 50% 100%, 42% 70%, 12% 88%, 30% 58%, 0 50%, 30% 42%, 12% 12%, 42% 30%);
  filter: drop-shadow(10px 10px 0 #050505);
  animation: pop 2.8s ease-in-out infinite;
}

.burst-one {
  width: 250px;
  height: 250px;
  right: 12%;
  top: 15%;
  background: var(--gold);
}

.burst-two {
  width: 150px;
  height: 150px;
  left: 45%;
  bottom: 12%;
  background: var(--aqua);
  animation-delay: .6s;
}

.sound-bars {
  position: absolute;
  right: 6%;
  bottom: 13%;
  z-index: 2;
  display: flex;
  align-items: end;
  gap: 8px;
  height: 160px;
  padding: 14px;
  border: 5px solid var(--line);
  background: var(--cream);
  box-shadow: var(--shadow);
  transform: rotate(4deg);
}

.sound-bars span {
  display: block;
  width: 24px;
  background: var(--magenta);
  border: 3px solid var(--line);
  animation: bounceBar .72s ease-in-out infinite alternate;
}

.sound-bars span:nth-child(1) { height: 45%; }
.sound-bars span:nth-child(2) { height: 72%; animation-delay: .12s; background: var(--aqua); }
.sound-bars span:nth-child(3) { height: 35%; animation-delay: .24s; background: var(--gold); }
.sound-bars span:nth-child(4) { height: 94%; animation-delay: .36s; }
.sound-bars span:nth-child(5) { height: 56%; animation-delay: .48s; background: var(--olive); }

.hero-comic {
  position: absolute;
  right: clamp(26px, 9vw, 126px);
  top: 24%;
  z-index: 9;
  width: min(38vw, 520px);
  min-width: 310px;
  aspect-ratio: 1;
}

.pizza-hero {
  position: absolute;
  inset: 14% 10% 18% 16%;
  border: 6px solid var(--line);
  background: var(--gold);
  clip-path: polygon(8% 0, 100% 0, 52% 100%);
  box-shadow: var(--shadow);
  transform: rotate(8deg);
  animation: floatSlice 4s ease-in-out infinite;
}

.crust {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 18%;
  background: #c97826;
  border-bottom: 5px solid var(--line);
}

.cheese {
  position: absolute;
  inset: 18% 8% 0 8%;
  background: #ffe26f;
  clip-path: polygon(0 0, 100% 0, 45% 100%);
}

.pep,
.olive,
.drip {
  position: absolute;
  border: 4px solid var(--line);
}

.pep {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
}

.pep-one { left: 32%; top: 24%; }
.pep-two { left: 56%; top: 38%; }
.pep-three { left: 43%; top: 58%; }

.olive {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #111;
  box-shadow: inset 0 0 0 9px var(--olive);
}

.olive-one { left: 66%; top: 20%; }
.olive-two { left: 34%; top: 46%; }

.drip {
  width: 26px;
  height: 84px;
  background: #ffe26f;
  border-top: 0;
  border-radius: 0 0 18px 18px;
}

.drip-one { left: 48%; bottom: -30px; }
.drip-two { left: 62%; bottom: -12px; height: 58px; }

.vinyl-hero {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 6px solid var(--line);
  background:
    radial-gradient(circle, var(--cream) 0 8%, var(--magenta) 8.5% 17%, #050505 17.5% 100%),
    repeating-radial-gradient(circle, #151515 0 5px, #050505 6px 10px);
  box-shadow: var(--shadow);
  animation: spin 8s linear infinite;
}

.vinyl-hero span {
  position: absolute;
  inset: 34%;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid var(--line);
}

.speech-bubble {
  position: absolute;
  left: 14%;
  top: -4%;
  max-width: 250px;
  padding: 16px 18px;
  background: var(--cream);
  color: var(--black);
  border: 5px solid var(--line);
  box-shadow: 7px 7px 0 var(--line);
  font-weight: 950;
  text-transform: uppercase;
  transform: rotate(-6deg);
  animation: bubbleNod 2.8s ease-in-out infinite;
}

.speech-bubble::after {
  content: "";
  position: absolute;
  right: 36px;
  bottom: -26px;
  width: 34px;
  height: 34px;
  background: var(--cream);
  border-right: 5px solid var(--line);
  border-bottom: 5px solid var(--line);
  transform: rotate(45deg);
}

.scanlines {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.14) 0, rgba(255,255,255,.14) 1px, transparent 1px, transparent 6px);
  opacity: .22;
}

.hero-content {
  position: relative;
  z-index: 8;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow: 2px 2px 0 var(--line);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 18px;
  color: var(--cream);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(4.1rem, 12.5vw, 10.4rem);
  line-height: .82;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 3px var(--line);
  text-shadow: 7px 7px 0 var(--magenta), 13px 13px 0 var(--aqua), 18px 18px 0 var(--line);
}

h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.25rem, 5.9vw, 5.1rem);
  line-height: .95;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 2px var(--line);
}

h3 {
  font-size: 1.08rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy,
.intro-copy p,
.signature p,
.visit-section p,
.source-card p,
.event-grid p,
.feature-grid p,
.comic-panel p {
  color: rgba(255, 244, 215, .84);
  line-height: 1.62;
}

.hero-copy {
  max-width: 640px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  text-shadow: 2px 2px 0 var(--line);
}

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

.now-card {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 36px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(315px, calc(100% - 36px));
  padding: 16px;
  color: var(--black);
  background: var(--cream);
  border: 5px solid var(--line);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.now-card p {
  margin: 0 0 4px;
  font-weight: 950;
}

.now-card small {
  color: #34312a;
}

.status-dot {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  background: var(--gold);
  border: 3px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 200, 87, .26);
}

section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.band {
  background:
    linear-gradient(140deg, rgba(127,165,56,.18), transparent 44%),
    #11100e;
  border-block: 5px solid var(--line);
}

.intro,
.info-section,
.visit-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.info-section .hours-card {
  grid-column: 1 / -1;
}

.feature-grid,
.event-grid,
.comic-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-grid article,
.event-grid article,
.recommend-card,
.source-card,
.hours-card,
.happy-hour-card,
.menu-item,
.comic-panel {
  border: 5px solid var(--line);
  background: var(--cream);
  color: var(--black);
  box-shadow: var(--shadow);
}

.feature-grid article,
.event-grid article,
.recommend-card,
.source-card,
.hours-card,
.happy-hour-card {
  padding: 22px;
}

.feature-grid p,
.event-grid p,
.recommend-card li,
.source-card p,
.hours-card p,
.happy-hour-card p {
  color: #2d2a24;
}

.feature-grid span {
  color: var(--magenta);
  font-weight: 950;
}

.section-heading {
  max-width: 890px;
  margin-bottom: 34px;
}

.gallery-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(255,200,87,.22), transparent 24%),
    radial-gradient(circle at 92% 10%, rgba(51,92,255,.2), transparent 22%),
    #080807;
}

.comic-panel {
  position: relative;
  min-height: 430px;
  padding: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.comic-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image: radial-gradient(#050505 1.2px, transparent 1.5px);
  background-size: 8px 8px;
}

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

.comic-panel h3 {
  margin-bottom: 8px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2.2rem;
  line-height: .95;
}

.comic-panel p {
  color: #17130e;
  margin-bottom: 0;
  font-weight: 700;
}

.panel-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 11px;
  background: var(--gold);
  border: 4px solid var(--line);
  box-shadow: 5px 5px 0 var(--line);
  font-weight: 950;
  text-transform: uppercase;
  transform: rotate(-4deg);
}

.panel-pizza {
  background: #ffe165;
  transform: rotate(-1deg);
}

.panel-rnb {
  background: #23c7b7;
  transform: rotate(1.5deg);
}

.panel-lounge {
  background: #ee3f8c;
  color: var(--cream);
  transform: rotate(-1.5deg);
}

.panel-lounge p {
  color: var(--cream);
}

.panel-events {
  grid-column: span 3;
  min-height: 320px;
  background: var(--blue);
  color: var(--cream);
}

.panel-events p {
  color: var(--cream);
}

.mini-pizza {
  position: absolute;
  top: 68px;
  right: 20px;
  width: 68%;
  aspect-ratio: 1;
  border: 6px solid var(--line);
  background:
    radial-gradient(circle at 38% 42%, var(--red) 0 8%, transparent 8.5%),
    radial-gradient(circle at 62% 54%, var(--red) 0 8%, transparent 8.5%),
    radial-gradient(circle at 52% 28%, #111 0 4%, var(--olive) 4.5% 8%, transparent 8.5%),
    conic-gradient(from 55deg, #ffe26f 0 74deg, transparent 74deg);
  border-radius: 50%;
  animation: wobble 3s ease-in-out infinite;
}

.equalizer {
  position: absolute;
  top: 88px;
  left: 40px;
  right: 40px;
  height: 190px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 12px;
}

.equalizer i {
  width: 32px;
  height: 40%;
  background: var(--cream);
  border: 5px solid var(--line);
  animation: bounceBar .8s ease-in-out infinite alternate;
}

.equalizer i:nth-child(2) { height: 88%; animation-delay: .1s; }
.equalizer i:nth-child(3) { height: 56%; animation-delay: .2s; background: var(--gold); }
.equalizer i:nth-child(4) { height: 96%; animation-delay: .3s; }
.equalizer i:nth-child(5) { height: 48%; animation-delay: .4s; background: var(--magenta); }
.equalizer i:nth-child(6) { height: 72%; animation-delay: .5s; }

.martini {
  position: absolute;
  top: 86px;
  left: 50%;
  width: 210px;
  height: 230px;
  transform: translateX(-50%) rotate(-4deg);
}

.martini::before {
  content: "";
  position: absolute;
  inset: 0 10px 74px;
  background: linear-gradient(135deg, transparent 48%, var(--cream) 48.5% 53%, transparent 53.5%), rgba(255,244,215,.72);
  border: 6px solid var(--line);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.martini::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 96px;
  height: 132px;
  border-bottom: 6px solid var(--line);
  border-left: 6px solid var(--line);
  transform: translateX(-50%) skewX(-22deg);
}

.boom {
  position: absolute;
  right: 8%;
  top: 40px;
  width: min(430px, 48%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--gold);
  border: 6px solid var(--line);
  clip-path: polygon(50% 0, 58% 31%, 90% 9%, 69% 42%, 100% 50%, 69% 58%, 90% 91%, 58% 69%, 50% 100%, 42% 69%, 10% 91%, 31% 58%, 0 50%, 31% 42%, 10% 9%, 42% 31%);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3rem, 10vw, 8rem);
  -webkit-text-stroke: 2px var(--line);
  animation: pop 1.8s ease-in-out infinite;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.tab {
  cursor: pointer;
  color: var(--black);
  background: var(--cream);
  box-shadow: 5px 5px 0 var(--line);
}

.tab.active,
.tab:hover {
  background: var(--magenta);
  color: var(--cream);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.menu-item {
  min-height: 190px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .18s ease, background .18s ease;
}

.menu-item:nth-child(3n + 1) { background: var(--paper); }
.menu-item:nth-child(3n + 2) { background: #d9f4ef; }
.menu-item:nth-child(3n + 3) { background: #ffd8ea; }

.menu-item:hover {
  transform: translate(-4px, -4px) rotate(-1deg);
}

.menu-item .topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.price {
  padding: 5px 8px;
  color: var(--black);
  background: var(--gold);
  border: 3px solid var(--line);
  font-weight: 950;
}

.menu-item p {
  color: #252019;
  line-height: 1.55;
}

.signature {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 760px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: #0a0908;
  border-block: 5px solid var(--line);
}

.record {
  width: min(100%, 340px);
  justify-self: center;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 6px solid var(--line);
  background:
    radial-gradient(circle, var(--cream) 0 8%, var(--magenta) 8.5% 17%, #050505 17.5% 100%),
    repeating-radial-gradient(circle, #171717 0 5px, #050505 6px 10px);
  box-shadow: var(--shadow);
  animation: spin 9s linear infinite;
}

.record span {
  display: block;
  width: 34%;
  aspect-ratio: 1;
  margin: 33%;
  border-radius: 50%;
  background: var(--olive);
  border: 10px solid var(--cream);
}

.hours-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 3px solid var(--line);
}

.hours-row.today {
  color: var(--magenta);
  font-weight: 950;
}

.recommend-card ul {
  margin: 0;
  padding-left: 20px;
  line-height: 1.75;
}

.event-grid article {
  min-height: 210px;
  border-top-width: 12px;
}

.event-grid article:nth-child(1) { border-top-color: var(--aqua); }
.event-grid article:nth-child(2) { border-top-color: var(--magenta); }
.event-grid article:nth-child(3) { border-top-color: var(--gold); }

.source-card a {
  color: var(--black);
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 42px 18px;
  color: var(--cream);
  background: #030303;
  border-top: 5px solid var(--line);
  text-align: center;
}

.site-footer img {
  width: 150px;
  padding: 6px;
  background: var(--cream);
  border: 4px solid var(--line);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 244, 215, .78);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pop {
  0%, 100% { transform: scale(.98) rotate(-3deg); }
  50% { transform: scale(1.05) rotate(3deg); }
}

@keyframes bounceBar {
  from { transform: scaleY(.45); }
  to { transform: scaleY(1); }
}

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

@keyframes bubbleNod {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-8px); }
}

@keyframes wobble {
  0%, 100% { transform: rotate(-8deg) scale(1); }
  50% { transform: rotate(7deg) scale(1.04); }
}

@keyframes paperShift {
  to { transform: translate3d(58px, 0, 0); }
}

.site-header[data-scrolled="true"] {
  border-bottom: 1px solid rgba(255, 244, 215, .14);
}

.brand {
  border: 1px solid rgba(255, 244, 215, .4);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .38), 0 0 34px rgba(127, 165, 56, .24);
  transform: none;
}

.site-nav {
  color: var(--cream);
  background: rgba(7, 7, 7, .66);
  border: 1px solid rgba(255, 244, 215, .18);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
  backdrop-filter: blur(18px);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold);
  background: rgba(255, 200, 87, .12);
  border-color: rgba(255, 200, 87, .42);
}

.reserve-link,
.button.primary,
.button.secondary,
.nav-toggle,
.tab {
  border-width: 1px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, .28);
}

.button.secondary {
  background: rgba(255, 244, 215, .09);
  color: var(--cream);
  border-color: rgba(255, 244, 215, .24);
}

.hero {
  border-bottom: 1px solid rgba(255, 244, 215, .12);
}

.hero-media {
  background:
    radial-gradient(circle at 76% 34%, rgba(238, 63, 140, .32), transparent 23%),
    radial-gradient(circle at 86% 78%, rgba(35, 199, 183, .22), transparent 28%),
    linear-gradient(128deg, rgba(127,165,56,.24), transparent 32%),
    linear-gradient(145deg, #050505 0 42%, #17120f 42.2% 68%, #050505 68.2%);
}

.hero-media::before {
  opacity: .38;
  background-image:
    linear-gradient(90deg, rgba(255,244,215,.05) 1px, transparent 1px),
    linear-gradient(rgba(255,244,215,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  animation: paperShift 24s linear infinite;
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(5,5,5,.9), rgba(5,5,5,.48) 52%, rgba(5,5,5,.42)),
    radial-gradient(circle at 68% 50%, transparent 0 20%, rgba(5,5,5,.38) 42%, rgba(5,5,5,.72) 100%);
}

.comic-burst,
.speech-bubble {
  display: none;
}

.sound-bars {
  right: 7%;
  bottom: 15%;
  gap: 7px;
  height: 142px;
  padding: 13px;
  border: 1px solid rgba(255, 244, 215, .2);
  border-radius: 999px;
  background: rgba(255, 244, 215, .07);
  box-shadow: 0 0 34px rgba(238, 63, 140, .24);
  transform: none;
  backdrop-filter: blur(12px);
}

.sound-bars span {
  width: 11px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(var(--gold), var(--magenta));
  box-shadow: 0 0 18px rgba(238, 63, 140, .55);
}

.hero-comic {
  right: clamp(30px, 8vw, 110px);
  top: 22%;
  width: min(35vw, 470px);
  opacity: .9;
}

.pizza-hero {
  inset: 22% 12% 22% 18%;
  border: 1px solid rgba(255, 244, 215, .24);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .48), 0 0 55px rgba(255, 200, 87, .22);
  filter: saturate(.95);
  animation: floatSlice 5.5s ease-in-out infinite;
}

.crust,
.pep,
.olive,
.drip,
.vinyl-hero,
.vinyl-hero span {
  border-width: 1px;
}

.vinyl-hero {
  width: 50%;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .5), 0 0 65px rgba(35, 199, 183, .24);
}

.scanlines {
  opacity: .12;
}

.eyebrow {
  text-shadow: none;
}

h1 {
  -webkit-text-stroke: 0;
  text-shadow: 0 0 24px rgba(238, 63, 140, .22), 0 10px 0 rgba(0, 0, 0, .38);
}

h2 {
  -webkit-text-stroke: 0;
}

.hero-copy {
  text-shadow: none;
}

.now-card {
  color: var(--cream);
  background: rgba(7, 7, 7, .72);
  border: 1px solid rgba(255, 244, 215, .2);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .45);
  transform: none;
  backdrop-filter: blur(14px);
}

.now-card small {
  color: rgba(255, 244, 215, .66);
}

.status-dot {
  border-width: 1px;
}

.band,
.signature,
.site-footer {
  border-block-width: 1px;
  border-color: rgba(255, 244, 215, .12);
}

.feature-grid article,
.event-grid article,
.recommend-card,
.source-card,
.hours-card,
.happy-hour-card,
.menu-item,
.comic-panel {
  border: 1px solid rgba(255, 244, 215, .16);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .34);
}

.feature-grid article,
.event-grid article,
.recommend-card,
.source-card,
.hours-card,
.happy-hour-card {
  color: var(--cream);
  background: rgba(255, 244, 215, .07);
  backdrop-filter: blur(10px);
}

.feature-grid p,
.event-grid p,
.recommend-card li,
.source-card p,
.hours-card p,
.happy-hour-card p {
  color: rgba(255, 244, 215, .76);
}

.gallery-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(238,63,140,.18), transparent 24%),
    radial-gradient(circle at 92% 20%, rgba(35,199,183,.16), transparent 22%),
    #070707;
}

.comic-panel {
  color: var(--cream);
  background: rgba(255, 244, 215, .07);
  backdrop-filter: blur(12px);
}

.comic-panel::before {
  opacity: .14;
  background-image: linear-gradient(120deg, rgba(255,244,215,.12), transparent 42%, rgba(255,244,215,.05));
  background-size: auto;
}

.comic-panel h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0;
}

.comic-panel p,
.panel-lounge p,
.panel-events p {
  color: rgba(255, 244, 215, .76);
  font-weight: 500;
}

.panel-tag {
  border: 1px solid rgba(255, 244, 215, .28);
  border-radius: 999px;
  box-shadow: none;
  transform: none;
}

.panel-pizza {
  background: linear-gradient(145deg, rgba(255,200,87,.28), rgba(127,165,56,.12)), rgba(255,244,215,.06);
  transform: none;
}

.panel-rnb {
  background: linear-gradient(145deg, rgba(35,199,183,.28), rgba(238,63,140,.12)), rgba(255,244,215,.06);
  transform: none;
}

.panel-lounge {
  background: linear-gradient(145deg, rgba(238,63,140,.3), rgba(255,200,87,.1)), rgba(255,244,215,.06);
  transform: none;
}

.panel-events {
  background: linear-gradient(145deg, rgba(51,92,255,.22), rgba(35,199,183,.12)), rgba(255,244,215,.06);
}

.mini-pizza {
  border: 1px solid rgba(255, 244, 215, .24);
  box-shadow: 0 0 44px rgba(255, 200, 87, .18);
}

.equalizer i {
  width: 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(var(--cream), var(--aqua));
  box-shadow: 0 0 18px rgba(35, 199, 183, .42);
}

.martini::before {
  border: 1px solid rgba(255, 244, 215, .42);
}

.martini::after {
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-color: rgba(255, 244, 215, .42);
}

.boom {
  clip-path: none;
  width: auto;
  aspect-ratio: auto;
  right: 8%;
  top: 58px;
  padding: 18px 26px;
  color: var(--cream);
  background: rgba(255, 244, 215, .08);
  border: 1px solid rgba(255, 244, 215, .22);
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  -webkit-text-stroke: 0;
  text-shadow: 0 0 28px rgba(35, 199, 183, .3);
  animation: pulseGlow 2.8s ease-in-out infinite;
}

.tab {
  color: var(--cream);
  background: rgba(255, 244, 215, .08);
  border-color: rgba(255, 244, 215, .18);
}

.tab.active,
.tab:hover {
  background: rgba(238, 63, 140, .72);
}

.menu-item:nth-child(3n + 1),
.menu-item:nth-child(3n + 2),
.menu-item:nth-child(3n + 3) {
  color: var(--cream);
  background: rgba(255, 244, 215, .07);
}

.price {
  border-width: 1px;
  border-radius: 999px;
}

.menu-item p {
  color: rgba(255, 244, 215, .7);
}

.hours-row {
  border-bottom: 1px solid rgba(255, 244, 215, .14);
}

.source-card a {
  color: var(--gold);
}

.address-heading {
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  line-height: 1.05;
}

.address-heading span {
  display: block;
}

.site-footer img {
  border: 1px solid rgba(255, 244, 215, .4);
}

@keyframes pulseGlow {
  0%, 100% { opacity: .72; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-8px); }
}

@media (max-width: 1040px) {
  .hero-comic {
    opacity: .58;
    right: -40px;
    top: 22%;
  }

  .sound-bars {
    display: none;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 92px;
    left: 18px;
    right: 18px;
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.open {
    display: flex;
  }

  .reserve-link {
    justify-self: end;
  }

  .intro,
  .info-section,
  .visit-section,
  .signature {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .event-grid,
  .menu-grid,
  .comic-panel-grid {
    grid-template-columns: 1fr 1fr;
  }

  .panel-events {
    grid-column: span 2;
  }

  .now-card {
    position: static;
    margin-top: 34px;
  }
}

@media (max-width: 640px) {
  .brand {
    width: 94px;
  }

  .hero {
    min-height: 92vh;
    padding-top: 122px;
  }

  .hero-comic {
    width: 360px;
    min-width: 0;
    right: -148px;
    top: 18%;
    opacity: .34;
  }

  .speech-bubble {
    display: none;
  }

  .hero-actions,
  .visit-actions,
  .button {
    width: 100%;
  }

  .feature-grid,
  .event-grid,
  .menu-grid,
  .comic-panel-grid {
    grid-template-columns: 1fr;
  }

  .panel-events {
    grid-column: auto;
  }

  .comic-panel {
    min-height: 380px;
  }

  .boom {
    width: 230px;
  }

  .record {
    width: min(64vw, 340px);
  }

  .address-heading {
    font-size: clamp(1.45rem, 8vw, 2.35rem);
  }
}

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