:root {
  --bg: #0a0605;
  --panel: #1a0f0d;
  --card: #261512;
  --text: #fff8f2;
  --muted: #ffd8c4;
  --accent: #ff2c20;
  --accent-bright: #ff6b4a;
  --accent-2: #7ee85c;
  --accent-2-deep: #3da62a;
  --accent-3: #e8a85c;
  --pop-yellow: #ffe14a;
  --pop-pink: #ff6eb5;
  --border: #5c2e22;
  --glow-red: rgba(255, 44, 32, 0.55);
  --glow-green: rgba(126, 232, 92, 0.4);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(255, 44, 32, 0.35), transparent 55%),
    radial-gradient(ellipse 80% 50% at 100% 40%, rgba(126, 232, 92, 0.12), transparent 45%),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(255, 225, 74, 0.08), transparent 50%),
    linear-gradient(180deg, #0f0806 0%, #1a0c0a 40%, #0a0605 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.15;
  margin: 0 0 0.6rem;
}

p {
  margin: 0 0 1rem;
}

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

code {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.1em 0.35em;
  border-radius: 6px;
  font-size: 0.9em;
}

.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

/* —— Happy Hour promo banner —— */
.promo-banner {
  background: linear-gradient(95deg, #2a0a08 0%, #4a1510 35%, #1a3d12 100%);
  border-bottom: 2px solid rgba(255, 225, 74, 0.55);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 99;
}

.promo-banner[hidden] {
  display: none !important;
}

.promo-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 0.55rem 0;
  flex-wrap: wrap;
}

.promo-banner-body {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
  flex: 1;
  min-width: 0;
}

.promo-banner-badge {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pop-yellow);
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(255, 225, 74, 0.4);
}

.promo-banner-text {
  margin: 0;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--text);
}

.promo-banner-close {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.promo-banner-close:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--accent-2);
  transform: scale(1.05);
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(10, 6, 5, 0.94), rgba(26, 15, 13, 0.88));
  border-bottom: 1px solid rgba(232, 168, 92, 0.35);
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 0 12px var(--glow-red));
  animation: floatLogo 3.2s ease-in-out infinite;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 0.65rem 1rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-list a {
  position: relative;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--pop-yellow));
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-list a:hover {
  color: var(--accent-2);
}

.nav-list a:hover::after {
  width: 100%;
}

.lang-toggle {
  border: 2px solid var(--accent-2);
  background: linear-gradient(145deg, #2a1814, #3d2520);
  color: var(--text);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 0 18px var(--glow-green);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lang-toggle:hover {
  transform: scale(1.06);
  box-shadow: 0 0 28px var(--glow-green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.social-buttons {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.social-buttons--footer {
  margin-top: 0.5rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(38, 21, 18, 0.95), rgba(26, 15, 13, 0.98));
  border: 1px solid rgba(232, 168, 92, 0.35);
  color: var(--text);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.social-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(126, 232, 92, 0.55);
  color: var(--accent-2);
  box-shadow: 0 8px 22px rgba(126, 232, 92, 0.18);
}

.social-tiktok:hover {
  color: #69c9d0;
}

.social-facebook:hover {
  color: #8b9ff5;
}

.social-instagram:hover {
  color: #ff7bc5;
}

.footer-contact .social-buttons {
  justify-content: flex-start;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  left: 50%;
  top: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 1;
  filter: saturate(1.08) contrast(1.05) brightness(1.06);
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-wrap {
    display: none;
  }
}

.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.28;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.65;
  animation: blobFloat 12s ease-in-out infinite;
}

.blob-1 {
  width: min(340px, 55vw);
  height: min(340px, 55vw);
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -8%;
  right: -5%;
  animation-delay: 0s;
}

.blob-2 {
  width: min(280px, 45vw);
  height: min(280px, 45vw);
  background: radial-gradient(circle, var(--accent-2-deep) 0%, transparent 70%);
  bottom: 5%;
  left: -10%;
  animation-delay: -4s;
}

.blob-3 {
  width: min(200px, 35vw);
  height: min(200px, 35vw);
  background: radial-gradient(circle, var(--pop-yellow) 0%, transparent 70%);
  top: 40%;
  left: 35%;
  opacity: 0.35;
  animation-delay: -7s;
}

.hero-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--pop-yellow);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--pop-yellow), 0 0 20px rgba(255, 225, 74, 0.5);
  animation: sparkleAnim 4s ease-in-out infinite;
  opacity: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from 120deg,
    rgba(255, 44, 32, 0.15),
    rgba(255, 225, 74, 0.12),
    rgba(126, 232, 92, 0.12),
    rgba(255, 110, 181, 0.08),
    rgba(255, 44, 32, 0.15)
  );
  filter: blur(40px);
  animation: spinTurbo 22s linear infinite;
  z-index: 1;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 6, 5, 0.18) 0%,
    rgba(10, 6, 5, 0.38) 45%,
    rgba(10, 6, 5, 0.62) 100%
  );
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 0 4rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-logo-ring {
  position: relative;
  padding: 1rem;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 44, 32, 0.35), rgba(126, 232, 92, 0.2));
  box-shadow:
    0 0 0 4px rgba(255, 225, 74, 0.35),
    0 0 60px var(--glow-red);
  animation: ringPulse 3s ease-in-out infinite;
}

.hero-logo-ring::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 225, 74, 0.5);
  animation: spinTurbo 28s linear infinite reverse;
}

.hero-logo {
  display: block;
  width: min(220px, 50vw);
  height: auto;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 640px;
}

.hero-brand-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--accent-bright), var(--pop-yellow), var(--accent-2));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shineText 4s linear infinite;
  margin-bottom: 0.35rem;
}

.eyebrow {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  font-weight: 800;
}

.eyebrow-shimmer {
  background: linear-gradient(90deg, var(--accent-2), var(--pop-yellow), var(--accent-2));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shineText 3s linear infinite;
}

.hero h1 {
  font-size: clamp(1.85rem, 4.2vw, 3.15rem);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.9),
    0 2px 28px rgba(0, 0, 0, 0.75),
    0 0 1px rgba(10, 6, 5, 1);
}

.hero-text {
  font-size: 1.08rem;
  color: var(--muted);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.85);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.hero-pill {
  font-size: 0.82rem;
  padding: 0.42rem 1rem;
  cursor: default;
  pointer-events: none;
}

.hero-pills .hero-pill:hover {
  transform: none;
}

.pill {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  animation: pillPop 2.4s ease-in-out infinite;
}

.pill:nth-child(2) {
  animation-delay: 0.3s;
}
.pill:nth-child(3) {
  animation-delay: 0.6s;
}

.pill-red {
  background: linear-gradient(135deg, var(--accent), #b01008);
  color: #fff;
  box-shadow: 0 4px 16px var(--glow-red);
}

.pill-green {
  background: linear-gradient(135deg, var(--accent-2), var(--accent-2-deep));
  color: #0d1a0a;
  box-shadow: 0 4px 16px var(--glow-green);
}

.pill-gold {
  background: linear-gradient(135deg, var(--pop-yellow), var(--accent-3));
  color: #2a1508;
  box-shadow: 0 4px 16px rgba(255, 225, 74, 0.35);
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-content .btn-outline {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.75);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-bright), var(--pop-yellow));
  background-size: 200% auto;
  color: #1a0503;
  box-shadow: 0 6px 28px var(--glow-red);
  animation: shineBg 3s ease infinite;
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.btn-glow:hover {
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.25);
}

.turbo-btn {
  animation: turboPulse 1.7s infinite;
}

.section {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

.section-heading {
  margin-bottom: 1.35rem;
}

.section-heading h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

/* —— Stats —— */
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: -3.5rem;
  position: relative;
  z-index: 5;
}

.stats article {
  background: linear-gradient(160deg, rgba(38, 21, 18, 0.95), rgba(18, 10, 8, 0.92));
  border: 1px solid rgba(255, 225, 74, 0.25);
  border-radius: 16px;
  padding: 1.2rem 1rem;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.stats article::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  animation: statShine 4s ease-in-out infinite;
}

.stats article:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(255, 44, 32, 0.2);
}

.stats h2 {
  font-size: 1.65rem;
  background: linear-gradient(90deg, var(--text), var(--pop-yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* —— Cards —— */
.cards {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: linear-gradient(165deg, var(--panel), var(--card));
  border: 1px solid rgba(255, 107, 74, 0.25);
  border-radius: 18px;
  padding: 1.35rem 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.card-pop:hover {
  transform: translateY(-10px) rotate(-0.5deg);
  border-color: rgba(126, 232, 92, 0.55);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(126, 232, 92, 0.15);
}

.card-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

/* —— Menu teaser (links to menu.html) —— */
.menu-teaser {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
  border-top: 1px solid rgba(232, 168, 92, 0.25);
}

.menu-teaser-inner {
  padding: clamp(1.35rem, 3vw, 2rem);
}

.menu-teaser-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 800;
  margin: 0 0 0.65rem;
}

.menu-teaser-text {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 40rem;
}

.menu-teaser-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.menu-teaser-disclaimer {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 216, 196, 0.78);
  max-width: 40rem;
  line-height: 1.55;
}

/* —— About —— */
.about-section {
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(255, 44, 32, 0.06), transparent);
}

.about-inner {
  position: relative;
}

.about-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 110, 181, 0.12), transparent 65%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 1.5rem;
  align-items: start;
}

.about-copy .about-lead {
  font-size: 1.05rem;
}

.keyword-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.keyword-list li {
  padding: 0.5rem 0.85rem;
  background: rgba(126, 232, 92, 0.1);
  border-left: 4px solid var(--accent-2);
  border-radius: 0 10px 10px 0;
  font-weight: 700;
  font-size: 0.92rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.keyword-list li:hover {
  background: rgba(255, 44, 32, 0.12);
  transform: translateX(4px);
}

.about-card {
  padding: 1.5rem;
  border-radius: 20px;
}

.about-card h3 {
  margin-bottom: 1rem;
}

.check-list {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.check-list li {
  margin-bottom: 0.45rem;
  font-weight: 600;
}

/* —— Gallery —— */
.gallery {
  background: linear-gradient(180deg, rgba(232, 168, 92, 0.08), rgba(126, 232, 92, 0.05));
}

.gallery-top {
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
}

.gallery-page {
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

.gallery-invite {
  padding: clamp(1rem, 2vw, 1.5rem) 0;
}

.gallery-invite-inner {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  padding: clamp(1.35rem, 3vw, 2rem);
}

.gallery-invite-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  margin: 0 0 0.65rem;
}

.gallery-invite-text {
  color: var(--muted);
  margin: 0 0 1.15rem;
  font-weight: 600;
  line-height: 1.55;
}

.gallery-intro {
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-weight: 600;
  max-width: 40rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.65rem;
}

@media (min-width: 720px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

.gallery-tile {
  display: block;
  position: relative;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 74, 0.2);
  background: var(--panel);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-tile:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

.gallery-pop:hover {
  transform: scale(1.03) rotate(0.5deg);
  box-shadow: 0 16px 40px rgba(255, 44, 32, 0.2);
}

.gallery-tile.gallery-pop:hover img {
  transform: scale(1.06);
}

.placeholder {
  border: 2px dashed rgba(255, 225, 74, 0.4);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 44, 32, 0.06));
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
  padding: 1rem;
}

/* —— Reviews —— */
.reviews {
  display: grid;
  gap: 1rem;
}

.quote-pop {
  margin: 0;
  padding: 1.15rem 1.2rem;
  border-left: 5px solid var(--accent-2);
  background: linear-gradient(95deg, var(--panel), rgba(255, 44, 32, 0.08));
  border-radius: 12px;
  font-style: italic;
  font-size: 1.02rem;
  transition: transform 0.25s ease;
}

.quote-pop:hover {
  transform: scale(1.01);
}

/* —— FAQ —— */
.faq-section {
  background: rgba(0, 0, 0, 0.2);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 800px;
}

.faq-item {
  padding: 0;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.15rem;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  position: relative;
  padding-right: 2.5rem;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--pop-yellow);
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  color: var(--muted);
}

/* —— Visit —— */
.visit-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.25rem;
}

.visit-card a {
  margin-top: 0.5rem;
  display: inline-block;
}

.hours-card {
  background: linear-gradient(165deg, var(--panel), var(--card));
  border: 1px solid rgba(126, 232, 92, 0.28);
  border-radius: 18px;
  padding: 1.2rem;
}

.hours-pop:hover {
  box-shadow: 0 0 28px rgba(126, 232, 92, 0.12);
}

.hours-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours-card li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 0;
}

.site-footer {
  border-top: 1px solid rgba(232, 168, 92, 0.35);
  padding: 2.25rem 0 1rem;
  background: linear-gradient(180deg, #060403, #0c0705);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.footer-owner-link {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.88rem;
}

.footer-owner-link a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.footer-owner-link a:hover {
  color: var(--accent-bright);
}

.copyright {
  text-align: center;
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.88rem;
}

/* —— Reveal & stagger —— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal .stagger-children > *,
.reveal.stagger-children > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible.stagger-children > *:nth-child(1),
.reveal.visible .stagger-children > *:nth-child(1) {
  transition-delay: 0.06s;
}
.reveal.visible.stagger-children > *:nth-child(2),
.reveal.visible .stagger-children > *:nth-child(2) {
  transition-delay: 0.14s;
}
.reveal.visible.stagger-children > *:nth-child(3),
.reveal.visible .stagger-children > *:nth-child(3) {
  transition-delay: 0.22s;
}
.reveal.visible.stagger-children > *:nth-child(4),
.reveal.visible .stagger-children > *:nth-child(4) {
  transition-delay: 0.3s;
}
.reveal.visible.stagger-children > *:nth-child(5),
.reveal.visible .stagger-children > *:nth-child(5) {
  transition-delay: 0.38s;
}

.reveal.visible .stagger-children > *,
.reveal.visible.stagger-children > * {
  opacity: 1;
  transform: translateY(0);
}

/* —— Keyframes —— */
@keyframes turboPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 44, 32, 0.55);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(255, 44, 32, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 44, 32, 0);
  }
}

@keyframes spinTurbo {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatLogo {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes blobFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(4%, -3%) scale(1.05);
  }
  66% {
    transform: translate(-3%, 4%) scale(0.98);
  }
}

@keyframes shineText {
  to {
    background-position: 200% center;
  }
}

@keyframes shineBg {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

@keyframes ringPulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(255, 225, 74, 0.35), 0 0 60px var(--glow-red);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 225, 74, 0.2), 0 0 80px rgba(255, 44, 32, 0.45);
  }
}

@keyframes pillPop {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes statShine {
  0%,
  100% {
    left: -40%;
  }
  50% {
    left: 120%;
  }
}

@keyframes sparkleAnim {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.4);
  }
  30% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 1.5rem;
  }

  .hero-content {
    margin-inline: auto;
  }

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

  .header-actions {
    order: 2;
    width: 100%;
    justify-content: center;
  }

  .stats,
  .cards,
  .visit-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    margin-top: -2rem;
  }

  .nav-list {
    order: 3;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 820px) {
  .brand-logo {
    height: 44px;
  }

  .footer-wrap {
    flex-direction: column;
  }
}
