:root {
  --bg-1: #120518;
  --bg-2: #27103a;
  --bg-3: #3b1329;
  --text: #fff8f2;
  --muted: #f3d8c5;
  --sunset-gold: #f7cd58;
  --hot-pink: #ff3ba7;
  --pride-blue: #1e67ff;
  --foam: #f6efe3;
  --card-bg: rgba(14, 7, 27, 0.68);
  --shadow-3d: 0 10px 0 #6f1d74, 0 18px 26px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 59, 167, 0.2), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(30, 103, 255, 0.18), transparent 28%),
    radial-gradient(ellipse at 50% 105%, rgba(175, 70, 8, 0.24), transparent 50%),
    radial-gradient(ellipse at 22% 88%, rgba(130, 45, 5, 0.12), transparent 38%),
    radial-gradient(ellipse at 78% 88%, rgba(130, 45, 5, 0.10), transparent 38%),
    linear-gradient(135deg, var(--bg-1), var(--bg-2) 55%, var(--bg-3));
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 2px,
      transparent 2px,
      transparent 14px
    );
  pointer-events: none;
  z-index: -1;
}

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

.container {
  width: min(1140px, 94vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(10, 4, 22, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  font-family: "Bungee", "Arial Black", sans-serif;
  letter-spacing: 0.05em;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--sunset-gold);
  text-shadow: 2px 2px 0 var(--hot-pink), 4px 4px 0 #4f0a63;
}

.nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
}

.nav-links a.active,
.nav-links a:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  padding: 72px 0 36px;
  position: relative;
}

.hero-full {
  min-height: 76vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 0;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04) brightness(0.82);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(15, 7, 26, 0.88) 10%, rgba(16, 7, 28, 0.42) 58%, rgba(16, 7, 28, 0.7) 100%),
    linear-gradient(180deg, rgba(10, 6, 20, 0.2), rgba(10, 6, 20, 0.72));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 62px;
}

.hero-copy {
  max-width: 760px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center;
}

.kicker {
  display: inline-block;
  background: linear-gradient(90deg, var(--sunset-gold), #ffe79c);
  color: #2b0932;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0;
  font-family: "Bungee", "Arial Black", sans-serif;
  font-size: clamp(2rem, 8vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #ffe8a7;
  text-shadow: 3px 3px 0 var(--hot-pink), 6px 6px 0 #2f104f, 10px 12px 26px rgba(0, 0, 0, 0.55);
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 16px 0 24px;
  max-width: 58ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: 0;
  border-radius: 12px;
  font-weight: 700;
  padding: 12px 18px;
  font-family: inherit;
  cursor: pointer;
}

.btn-primary {
  color: #280825;
  background: linear-gradient(135deg, #ffd560, #ff9f5f);
  box-shadow: var(--shadow-3d);
}

.btn-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-showcase {
  perspective: 900px;
}

.hero-sound-gate {
  margin-top: 14px;
  display: inline-block;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(15, 10, 29, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffe7c7;
  font-size: 0.86rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 250ms ease, transform 250ms ease;
  pointer-events: none;
}

.hero-sound-gate.show {
  opacity: 1;
  transform: translateY(0);
}

.hero-video-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.42);
  transform: rotateY(-8deg);
  min-height: 360px;
  background: #130b20;
}

.hero-video {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
  filter: saturate(1.2) contrast(1.05);
}

.hero-video-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  background: linear-gradient(180deg, transparent, rgba(11, 5, 21, 0.92));
}

.hero-video-overlay h3 {
  margin: 0 0 6px;
  font-family: "Bungee", "Arial Black", sans-serif;
  font-size: 1.1rem;
  color: #ffe2a1;
}

.hero-video-overlay p {
  margin: 0;
  font-size: 0.9rem;
  color: #f7e8d8;
}

.poster-stack {
  position: relative;
  min-height: 360px;
}

.poster {
  position: absolute;
  inset: auto 0 0 auto;
  width: min(280px, 85%);
  border-radius: 20px;
  padding: 22px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.4);
}

.poster:nth-child(1) {
  transform: rotateY(-18deg) rotateX(8deg) translate(-80px, 0px);
  background: linear-gradient(135deg, rgba(255, 59, 167, 0.28), rgba(70, 13, 122, 0.34));
}

.poster:nth-child(2) {
  transform: rotateY(-8deg) translate(-15px, 36px);
  background: linear-gradient(130deg, rgba(30, 103, 255, 0.24), rgba(140, 71, 255, 0.29));
}

.poster h3 {
  margin: 0;
  font-family: "Bungee", "Arial Black", sans-serif;
  font-size: 1.1rem;
}

.poster p {
  margin: 10px 0 0;
  color: #f9ecdb;
  font-size: 0.9rem;
}

.section {
  padding: 26px 0 52px;
}

.section h2 {
  margin: 0 0 12px;
  font-family: "Bungee", "Arial Black", sans-serif;
  letter-spacing: 0.03em;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  color: #ffe4a6;
}

.section-sub {
  margin: 0 0 20px;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
}

.card h3,
.card h4 {
  margin: 0 0 8px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.quote {
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  color: #fff5ea;
}

.quote:last-child {
  border-bottom: 0;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(6, 4, 18, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  overflow: hidden;
}

.table th,
.table td {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  text-align: left;
}

.table th {
  color: #ffe8b4;
}

.table tr:last-child td {
  border-bottom: 0;
}

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

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
}

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

.item-name {
  font-weight: 600;
}

.item-notes {
  display: block;
  margin-top: 3px;
  font-size: 0.85rem;
  color: var(--muted);
}

.price {
  font-family: "Bungee", "Arial Black", sans-serif;
  color: #ffd768;
  font-size: 0.95rem;
}

.event-timeline {
  display: grid;
  gap: 14px;
}

.event-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  align-items: center;
}

.event-day {
  font-family: "Bungee", "Arial Black", sans-serif;
  color: #ffd769;
}

.badge {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.14);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-tile {
  border-radius: 16px;
  min-height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  align-content: end;
  padding: 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 16px 22px rgba(0, 0, 0, 0.36);
}

.gallery-tile h4 {
  margin: 0 0 6px;
}

.gallery-tile-label {
  background: linear-gradient(180deg, rgba(10, 8, 20, 0.08), rgba(10, 8, 20, 0.84));
  border-radius: 10px;
  padding: 10px;
  backdrop-filter: blur(2px);
}

.small {
  font-size: 0.85rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.photo-item {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.25);
}

.voice-panel {
  display: grid;
  gap: 10px;
}

.voice-log {
  min-height: 160px;
  max-height: 240px;
  overflow: auto;
  background: rgba(6, 4, 18, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 12px;
  font-size: 0.9rem;
}

.voice-line {
  margin-bottom: 8px;
}

.voice-line strong {
  color: #ffd671;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
}

.footer {
  padding: 26px 0 40px;
  color: #f0d6c8;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 550ms ease, transform 550ms ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.pulse {
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-full {
    min-height: 65vh;
  }

  .hero-content {
    padding: 98px 0 44px;
  }

  .menu-columns,
  .card-grid,
  .gallery-grid,
  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .poster-stack {
    min-height: 290px;
  }

  .hero-video-wrap,
  .hero-video {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .menu-columns,
  .card-grid,
  .gallery-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 18px 0 36px;
  }

  .card {
    padding: 14px 12px;
  }

  .menu-item {
    flex-wrap: wrap;
    gap: 4px 8px;
  }

  .item-name {
    font-size: 0.92rem;
  }

  .item-notes {
    font-size: 0.78rem;
  }

  .price {
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .brand {
    text-align: center;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .nav-links a {
    text-align: center;
    padding: 7px 6px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-full {
    min-height: 72vh;
    padding: 0;
  }

  .poster {
    width: 100%;
  }

  .poster:nth-child(1) {
    transform: rotateY(-8deg) translate(-18px, 0);
  }

  .poster:nth-child(2) {
    transform: rotateY(0deg) translate(0, 78px);
  }

  .hero-video-wrap {
    transform: none;
    min-height: 250px;
  }

  .hero-video {
    min-height: 250px;
  }
}

/* ================================================================
   BAR ATMOSPHERE ENHANCEMENTS
   ================================================================ */

/* Warm amber glow floating over background */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% 100%, rgba(175, 70, 8, 0.16), transparent 70%),
    radial-gradient(ellipse 40% 28% at 50% 52%, rgba(200, 110, 20, 0.05), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* === ENTRANCE OVERLAY === */
.bar-entrance {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  cursor: pointer;
  background: radial-gradient(ellipse at 50% 58%, rgba(155, 58, 4, 0.94) 0%, rgba(8, 2, 0, 0.98) 68%);
  transition: opacity 1.1s ease 0.1s, visibility 1.1s ease 0.1s;
}

.bar-entrance.out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.bar-entrance-heading {
  font-family: "Bungee", "Arial Black", sans-serif;
  font-size: clamp(1.8rem, 6vw, 3.4rem);
  color: #ffda6a;
  letter-spacing: 0.12em;
  text-shadow: 0 0 22px rgba(255, 175, 35, 0.9), 0 0 55px rgba(195, 90, 8, 0.55), 3px 3px 0 #6e1d00;
  animation: entranceGlow 1.1s ease forwards;
}

.bar-entrance-sub {
  font-size: 0.88rem;
  color: rgba(255, 208, 140, 0.68);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
}

.bar-entrance-rule {
  width: 110px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 195, 70, 0.55), transparent);
  margin: 2px 0;
}

.bar-entrance-hint {
  position: absolute;
  bottom: 32px;
  font-size: 0.78rem;
  color: rgba(255, 200, 120, 0.4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@keyframes entranceGlow {
  0%   { opacity: 0; filter: blur(10px); transform: scale(0.92); }
  65%  { opacity: 1; filter: blur(0); transform: scale(1.015); }
  100% { opacity: 1; filter: blur(0); transform: scale(1); }
}

/* === RISING BUBBLE PARTICLES === */
.atm-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

@keyframes bubbleRise {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  8%   { opacity: var(--b-opacity, 0.5); }
  88%  { opacity: var(--b-opacity, 0.32); }
  100% { transform: translateY(calc(-105vh)) translateX(var(--b-drift, 28px)) scale(0.55); opacity: 0; }
}

.atm-bubble {
  position: absolute;
  bottom: -24px;
  border-radius: 50%;
  pointer-events: none;
  animation: bubbleRise var(--b-dur, 9s) ease-in var(--b-delay, 0s) infinite;
  background: radial-gradient(circle at 35% 32%, rgba(255, 218, 90, 0.72), rgba(200, 135, 25, 0.18));
  border: 1px solid rgba(255, 205, 72, 0.22);
}

/* === NEON SIGN FLICKER (H1) === */
@keyframes neonFlicker {
  0%, 17%, 21%, 24%, 52%, 57%, 100% {
    text-shadow:
      3px 3px 0 var(--hot-pink),
      6px 6px 0 #2f104f,
      0 0 16px rgba(255, 212, 72, 0.7),
      0 0 38px rgba(195, 108, 10, 0.4),
      10px 12px 26px rgba(0, 0, 0, 0.55);
  }
  18%, 20% {
    text-shadow: 3px 3px 0 var(--hot-pink), 6px 6px 0 #2f104f, 10px 12px 26px rgba(0, 0, 0, 0.55);
  }
  53%, 56% {
    text-shadow:
      3px 3px 0 var(--hot-pink),
      6px 6px 0 #2f104f,
      0 0 7px rgba(255, 212, 72, 0.3),
      10px 12px 26px rgba(0, 0, 0, 0.55);
  }
}

.neon-sign {
  animation: pulse 2.2s ease-in-out infinite, neonFlicker 7s ease-in-out 1.8s infinite;
}

/* === 3D CARD TILT === */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.14s ease, box-shadow 0.14s ease;
  will-change: transform;
}

.tilt-card:hover {
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.54), 0 0 26px rgba(205, 115, 15, 0.13);
}

/* === POUR BUTTON PULSE WHEN ACTIVE === */
@keyframes pourGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(247, 205, 88, 0.45); }
  50%       { box-shadow: 0 0 0 7px rgba(247, 205, 88, 0); }
}

#pour-sound-toggle.pouring {
  background: rgba(247, 205, 88, 0.14);
  border-color: rgba(247, 205, 88, 0.52);
  color: #ffe49a;
  animation: pourGlow 1.8s ease infinite;
}

/* === GALLERY TILE HOVER LIFT === */
.gallery-tile {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gallery-tile:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 24px 36px rgba(0, 0, 0, 0.48),
    0 0 22px rgba(195, 110, 15, 0.13);
}

/* === HEADER WARM TINT WHEN SOUND IS ON === */
.site-header.sound-on {
  border-bottom-color: rgba(247, 205, 88, 0.2);
  box-shadow: 0 1px 18px rgba(175, 75, 8, 0.12);
}

/* === FOOTER WARM DIVIDER === */
.footer::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247, 205, 88, 0.28) 28%, rgba(255, 59, 167, 0.22) 72%, transparent);
  margin-bottom: 18px;
}


/* ============================================================
   BEER POUR EFFECT — golden liquid cascading down the page
   ============================================================ */

/* Full-screen pour overlay — sits on top of everything */
#beer-pour-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
  animation: overlayFadeOut 1s ease-out 3.8s forwards;
}

/* The main golden liquid stream */
.pour-stream {
  position: absolute;
  top: -120%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 220vh;
  background: linear-gradient(
    to bottom,
    rgba(247, 190, 30, 0) 0%,
    rgba(247, 190, 30, 0.04) 5%,
    rgba(247, 190, 30, 0.18) 20%,
    rgba(220, 160, 20, 0.42) 40%,
    rgba(200, 130, 10, 0.55) 55%,
    rgba(180, 100, 5, 0.38) 70%,
    rgba(247, 190, 30, 0.06) 85%,
    rgba(247, 190, 30, 0) 100%
  );
  animation: beerPourDown 3.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Foam head at the pour front */
.pour-foam {
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 90px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 240, 0) 0%,
    rgba(255, 252, 220, 0.85) 35%,
    rgba(255, 248, 200, 0.65) 65%,
    rgba(255, 240, 160, 0.15) 100%
  );
  border-radius: 0 0 60% 60%;
  filter: blur(8px);
  animation: beerPourDown 3.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Bubble particles rising through the beer */
.pour-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 250, 180, 0.9), rgba(247, 200, 40, 0.3));
  animation: bubbleFloat var(--bd, 2s) ease-in var(--bdelay, 0s) var(--brep, 3) both;
  opacity: 0;
}

/* Golden shine sweep — like light catching beer in a glass */
.pour-shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 240, 120, 0.12) 45%,
    rgba(255, 255, 200, 0.28) 50%,
    rgba(255, 240, 120, 0.12) 55%,
    transparent 100%
  );
  animation: shineSweep 2.4s ease-in-out 0.6s infinite;
}

/* Drips running down the sides */
.pour-drip {
  position: absolute;
  top: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, rgba(247, 190, 30, 0.7), transparent);
  border-radius: 0 0 3px 3px;
  animation: dripDown var(--dd, 1.8s) ease-in var(--ddelay, 0.4s) forwards;
  filter: blur(1px);
}

/* Beer tint wash on the hero while pouring */
.hero.beer-pour-active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(220, 160, 10, 0.22) 0%,
    rgba(180, 110, 5, 0.14) 50%,
    rgba(100, 60, 0, 0.06) 100%
  );
  pointer-events: none;
  z-index: 3;
  animation: beerTintFade 3.5s ease-out forwards;
}

/* Header golden glow while sound is on */
.site-header.sound-on {
  box-shadow: 0 2px 30px rgba(247, 190, 30, 0.3) !important;
  border-bottom: 1px solid rgba(247, 190, 30, 0.25) !important;
}

/* ---- Keyframes ---- */
@keyframes beerPourDown {
  0%   { transform: translateX(-50%) translateY(0); opacity: 1; }
  60%  { opacity: 1; }
  100% { transform: translateX(-50%) translateY(100%); opacity: 0; }
}

@keyframes bubbleFloat {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  80%  { opacity: 0.7; }
  100% { transform: translateY(calc(var(--brise, -200px))) scale(0.4); opacity: 0; }
}

@keyframes shineSweep {
  0%   { left: -60%; opacity: 0; }
  10%  { opacity: 1; }
  100% { left: 120%; opacity: 0; }
}

@keyframes dripDown {
  0%   { height: 0; opacity: 0.8; }
  60%  { height: calc(var(--dh, 30vh)); opacity: 0.6; }
  100% { height: calc(var(--dh, 30vh) * 1.3); opacity: 0; }
}

@keyframes overlayFadeOut {
  0%   { opacity: 1; }
  100% { opacity: 0; pointer-events: none; }
}

@keyframes beerTintFade {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}
