/* ========================================
   MY BURGER — WSPÓLNY CSS
   Wrocławska 5, Poznań
======================================== */

:root {
  --bg-deep: #0A0807;
  --bg-brick: #1F1411;
  --bg-elevated: #14100E;
  --neon-white: #F5F0E6;
  --neon-orange: #FFA726;
  --neon-orange-glow: #FFB84D;
  --accent-blood: #C41E3A;
  --accent-rust: #8B4513;
  --accent-yellow: #FFD93D;
  --text-muted: #8A7B70;
  --text-bright: #E8DCC8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: 'Archivo', sans-serif;
  background: var(--bg-deep);
  color: var(--text-bright);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

body.loading { overflow: hidden; }

::selection { background: var(--neon-orange); color: var(--bg-deep); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--accent-rust); }
::-webkit-scrollbar-thumb:hover { background: var(--neon-orange); }

/* ========================================
   LOADER
======================================== */
.loader {
  position: fixed; inset: 0;
  background: var(--bg-deep);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 2rem;
  transition: opacity 0.6s, visibility 0.6s;
}

.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-neon {
  font-family: 'Monoton', cursive;
  font-size: clamp(2rem, 9vw, 6rem);
  color: var(--neon-white);
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-align: center;
  padding: 0 1rem;
  max-width: 100%;
}

.loader-neon span {
  display: inline-block;
  opacity: 0;
  text-shadow: none;
}

.loader-neon span.lit {
  opacity: 1;
  text-shadow:
    0 0 5px var(--neon-white),
    0 0 10px var(--neon-orange),
    0 0 20px var(--neon-orange),
    0 0 40px rgba(255,167,38,0.6);
}

.loader-bar {
  width: 240px; height: 2px;
  background: rgba(255,167,38,0.15);
  position: relative; overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, var(--neon-orange), transparent);
  animation: loader-slide 1.2s linear infinite;
  box-shadow: 0 0 12px var(--neon-orange);
}

@keyframes loader-slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.loader-text {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4em;
}

/* ========================================
   CURSOR
======================================== */
.cursor-glow {
  position: fixed;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,167,38,0.6) 0%, rgba(255,167,38,0) 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
  mix-blend-mode: screen;
}

.cursor-dot {
  position: fixed;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--neon-white);
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px var(--neon-white);
}

.cursor-glow.hover {
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(255,167,38,0.4) 0%, rgba(196,30,58,0.2) 50%, transparent 70%);
}

/* ========================================
   BACKGROUND LAYERS
======================================== */
.brick-bg {
  position: fixed; inset: 0;
  z-index: -2;
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(ellipse at top, rgba(255,167,38,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(196,30,58,0.06) 0%, transparent 60%);
}

.brick-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0px, transparent 39px, rgba(0,0,0,0.5) 39px, rgba(0,0,0,0.5) 40px),
    repeating-linear-gradient(90deg, transparent 0px, transparent 79px, rgba(0,0,0,0.4) 79px, rgba(0,0,0,0.4) 80px);
  opacity: 0.6;
  mix-blend-mode: multiply;
}

.brick-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(139,69,19,0.18) 0%, transparent 30%),
    radial-gradient(circle at 85% 75%, rgba(31,20,17,0.5) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, transparent 30%, rgba(0,0,0,0.4) 100%);
}

.grain {
  position: fixed; inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.embers {
  position: fixed; inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ember {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--neon-orange);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--neon-orange), 0 0 12px var(--neon-orange);
  opacity: 0;
  bottom: -10px;
  animation: rise linear infinite;
}

@keyframes rise {
  0% { opacity: 0; transform: translateY(0) translateX(0); }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-100vh) translateX(var(--drift, 50px)); }
}

/* ========================================
   NAVIGATION
======================================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, rgba(10,8,7,0.92) 0%, rgba(10,8,7,0) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: padding 0.3s, background 0.3s;
}

nav.scrolled {
  padding: 0.8rem 3rem;
  background: rgba(10,8,7,0.95);
  border-bottom: 1px solid rgba(255,167,38,0.15);
}

.nav-logo {
  font-family: 'Monoton', cursive;
  font-size: 1.4rem;
  color: var(--neon-white);
  text-shadow:
    0 0 5px var(--neon-white),
    0 0 10px var(--neon-orange),
    0 0 20px var(--neon-orange);
  letter-spacing: 0.15em;
  text-decoration: none;
  cursor: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-bright);
  text-decoration: none;
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--neon-orange);
  transition: width 0.3s;
  box-shadow: 0 0 8px var(--neon-orange);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--neon-orange);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

/* Language switcher */
.lang-switch {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,167,38,0.3);
  border-radius: 2px;
  overflow: hidden;
}

.lang-switch button {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.4rem 0.7rem;
  cursor: none;
  transition: all 0.2s;
}

.lang-switch button.active {
  background: var(--neon-orange);
  color: var(--bg-deep);
}

.lang-switch button:not(.active):hover {
  color: var(--neon-orange);
}

/* Order online CTA in nav */
.nav-order {
  background: var(--neon-orange);
  color: var(--bg-deep);
  padding: 0.6rem 1.2rem;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  cursor: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-order:hover {
  background: var(--neon-orange-glow);
  box-shadow: 0 0 15px rgba(255,167,38,0.5);
  transform: translateY(-1px);
}

.nav-order::before {
  content: '●';
  color: var(--accent-blood);
  animation: pulse 1.5s ease-in-out infinite;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--neon-white);
  cursor: pointer;
  padding: 0.5rem;
}

/* ========================================
   PAGE HEADER (for subpages)
======================================== */
.page-header {
  padding: 12rem 2rem 6rem;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(255,167,38,0.1);
}

.page-header h1 {
  font-family: 'Bungee', cursive;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.9;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.page-header h1 .neon-accent {
  color: var(--neon-orange);
  text-shadow: 0 0 5px var(--neon-orange), 0 0 15px var(--neon-orange);
  display: block;
}

.page-header .subtitle {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--neon-orange);
  text-decoration: none;
}

.breadcrumb span {
  color: var(--text-muted);
  margin: 0 0.5rem;
}

/* ========================================
   HERO
======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--neon-orange);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,167,38,0.3);
  border-radius: 2px;
  margin-bottom: 2rem;
  background: rgba(255,167,38,0.05);
  backdrop-filter: blur(4px);
}

.hero-badge::before {
  content: '●';
  color: var(--neon-orange);
  animation: pulse 2s ease-in-out infinite;
  text-shadow: 0 0 8px var(--neon-orange);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: 'Bungee', cursive;
  font-size: clamp(3rem, 8.5vw, 7rem);
  line-height: 0.9;
  color: var(--neon-white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

/* WERSJA "BEZ ŚCIEMY" — solidny kolor, mocny kontrast, czytelny */
.hero h1 .accent {
  color: var(--neon-orange);
  display: block;
  text-shadow:
    0 0 2px rgba(255,255,255,0.3),
    0 0 8px rgba(255,167,38,0.6),
    0 0 20px rgba(255,167,38,0.3);
  -webkit-text-stroke: 1px rgba(255,167,38,0.8);
}

.hero-tagline {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.5;
}

.hero-tagline strong {
  color: var(--text-bright);
  font-weight: 700;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  border: none;
  cursor: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--neon-orange);
  color: var(--bg-deep);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-primary:hover::before { transform: translateX(100%); }

.btn-primary:hover {
  background: var(--neon-orange-glow);
  box-shadow:
    0 0 20px rgba(255,167,38,0.6),
    0 0 40px rgba(255,167,38,0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--neon-white);
  border: 1px solid var(--neon-white);
}

.btn-secondary:hover {
  background: var(--neon-white);
  color: var(--bg-deep);
  box-shadow: 0 0 20px rgba(245,240,230,0.4);
}

.btn-arrow {
  transition: transform 0.3s;
  display: inline-block;
}

.btn:hover .btn-arrow { transform: translateX(4px); }

.hero-logo {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.neon-logo {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  position: relative;
}

.neon-logo svg,
.neon-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter:
    drop-shadow(0 0 4px rgba(245,240,230,0.8))
    drop-shadow(0 0 12px rgba(255,167,38,0.6))
    drop-shadow(0 0 30px rgba(255,167,38,0.4));
  animation: neon-buzz 8s ease-in-out infinite;
}

@keyframes neon-buzz {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(245,240,230,0.8)) drop-shadow(0 0 12px rgba(255,167,38,0.6)) drop-shadow(0 0 30px rgba(255,167,38,0.4)); }
  73% { filter: drop-shadow(0 0 4px rgba(245,240,230,0.8)) drop-shadow(0 0 12px rgba(255,167,38,0.6)) drop-shadow(0 0 30px rgba(255,167,38,0.4)); }
  74% { filter: drop-shadow(0 0 2px rgba(245,240,230,0.4)) drop-shadow(0 0 6px rgba(255,167,38,0.3)) drop-shadow(0 0 15px rgba(255,167,38,0.2)); }
  75% { filter: drop-shadow(0 0 4px rgba(245,240,230,0.8)) drop-shadow(0 0 12px rgba(255,167,38,0.6)) drop-shadow(0 0 30px rgba(255,167,38,0.4)); }
}

.neon-logo::before {
  content: '';
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, rgba(255,167,38,0.3) 0%, transparent 60%);
  filter: blur(50px);
  z-index: -1;
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 5;
}

.scroll-hint::after {
  content: '';
  width: 1px; height: 30px;
  background: linear-gradient(180deg, var(--neon-orange) 0%, transparent 100%);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ========================================
   MARQUEE
======================================== */
.marquee {
  background: var(--neon-orange);
  color: var(--bg-deep);
  padding: 1.2rem 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(0,0,0,0.2);
  transform: rotate(-1deg);
  margin: 4rem 0;
  box-shadow: 0 0 20px rgba(255,167,38,0.5), 0 0 40px rgba(255,167,38,0.2);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee-scroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-item {
  font-family: 'Bungee', cursive;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.marquee-item::after { content: '★'; color: var(--bg-deep); }

/* Ukrycie tekstów marquee dopóki font Bungee się nie załaduje (anty-FOUT) */
.marquee-item { visibility: hidden; }
.fonts-ready .marquee-item { visibility: visible; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========================================
   SECTION
======================================== */
.section {
  padding: 8rem 2rem;
  position: relative;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--neon-orange);
  text-transform: uppercase;
  letter-spacing: 0.4em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--neon-orange);
  box-shadow: 0 0 8px var(--neon-orange);
}

.section-title {
  font-family: 'Bungee', cursive;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.95;
  margin-bottom: 1.5rem;
  color: var(--neon-white);
  letter-spacing: -0.01em;
}

.section-title .neon-accent {
  color: var(--neon-orange);
  text-shadow: 0 0 5px var(--neon-orange), 0 0 15px var(--neon-orange);
}

.section-subtitle {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 5rem;
  line-height: 1.6;
}

/* ========================================
   ANATOMY (eksplodujący burger)
======================================== */
.anatomy {
  padding: 8rem 2rem;
  position: relative;
  min-height: 250vh;
}

.anatomy-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.anatomy-grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
  width: 100%;
  padding: 0 2rem;
}

.anatomy-grid .anatomy-text {
  max-width: 900px;
  text-align: center;
  width: 100%;
}

.anatomy-grid .anatomy-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.anatomy-grid .layer-info {
  margin-bottom: 0.5rem;
  padding-left: 0;
  border-left: none;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.anatomy-grid .layer-info.active {
  transform: translateY(0);
}

.anatomy-grid .anatomy-progress {
  justify-content: center;
  margin-top: 1.2rem;
}

.anatomy-text h2 {
  font-family: 'Bungee', cursive;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 2rem;
  color: var(--neon-white);
}

.anatomy-text h2 .neon-accent {
  color: var(--neon-orange);
  text-shadow: 0 0 10px var(--neon-orange);
  display: block;
}

.layer-info {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  color: var(--text-bright);
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 2px solid var(--neon-orange);
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s;
  display: none;
}

.layer-info.active {
  opacity: 1;
  transform: translateX(0);
  display: block;
}

.layer-info .layer-name {
  display: block;
  font-family: 'Bungee', cursive;
  font-size: 1.3rem;
  color: var(--neon-orange);
  margin-bottom: 0.4rem;
  text-shadow: 0 0 8px rgba(255,167,38,0.4);
}

.layer-info .layer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.anatomy-progress {
  display: flex;
  gap: 0.4rem;
  margin-top: 2rem;
}

.anatomy-progress-dot {
  width: 32px;
  height: 4px;
  background: rgba(255,167,38,0.2);
  transition: background 0.3s;
}

.anatomy-progress-dot.active {
  background: var(--neon-orange);
  box-shadow: 0 0 8px var(--neon-orange);
}

.anatomy-layers {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  max-width: min(100%, calc(60vh * 16 / 9));
  margin: 0 auto;
  perspective: 1500px;
}

#anatomy-canvas {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 16/9;
  background: var(--bg-deep);
  object-fit: cover;
}

/* Stare reguly stosu warstw — zostawione dla kompatybilnosci wstecz */
.burger-stack {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.burger-layer-3d {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s;
}

.burger-layer-3d svg {
  display: block;
}

/* ========================================
   MENU CARDS
======================================== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  perspective: 1500px;
}

.burger-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(255,167,38,0.1);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s, border-color 0.4s;
  overflow: hidden;
  transform-style: preserve-3d;
  cursor: none;
}

.burger-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--neon-orange) 0%, transparent 50%, var(--accent-blood) 100%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.burger-card:hover {
  border-color: rgba(255,167,38,0.3);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 40px rgba(255,167,38,0.2);
}

.burger-card:hover::before { opacity: 1; }

.drool {
  position: absolute;
  bottom: -15px;
  left: 25%;
  width: 8px;
  height: 0;
  background: linear-gradient(180deg, var(--neon-orange) 0%, var(--accent-blood) 100%);
  border-radius: 50% 50% 50% 50% / 0 0 100% 100%;
  opacity: 0;
  transition: height 0.6s 0.2s, opacity 0.3s 0.2s;
  filter: blur(0.5px);
  z-index: 5;
}

.drool::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: var(--accent-blood);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s 0.6s;
}

.burger-card:hover .drool { height: 40px; opacity: 0.8; }
.burger-card:hover .drool::after { opacity: 1; }
.burger-card .drool-2 { left: 65%; transition-delay: 0.4s; }

/* Photo placeholder — bardziej "miejsce na zdjęcie" */
.burger-image {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #2A1F1A 0%, #1A0F0B 100%),
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,167,38,0.02) 10px, rgba(255,167,38,0.02) 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}

.burger-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,167,38,0.2) 0%, transparent 70%);
  transition: opacity 0.4s;
}

.burger-image::before {
  content: '';
  position: absolute;
  inset: 1rem;
  border: 1px dashed rgba(255,167,38,0.2);
  pointer-events: none;
}

.burger-image-placeholder-text {
  position: absolute;
  bottom: 0.7rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  color: var(--neon-orange);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  background: var(--bg-deep);
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(255,167,38,0.3);
  z-index: 3;
  opacity: 0.7;
}

.burger-icon {
  width: 90px;
  height: 90px;
  opacity: 0.5;
  transition: all 0.4s;
  z-index: 2;
}

.burger-card:hover .burger-icon {
  opacity: 0.85;
  transform: scale(1.15) rotate(-5deg);
  filter: drop-shadow(0 0 16px var(--neon-orange));
}

.burger-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.3rem 0.7rem;
  background: var(--bg-deep);
  border: 1px solid var(--neon-orange);
  color: var(--neon-orange);
  z-index: 3;
}

.burger-tag.hot {
  border-color: var(--accent-blood);
  color: var(--accent-blood);
}

.burger-info { padding: 1.75rem; }

.burger-name {
  font-family: 'Bungee', cursive;
  font-size: 1.5rem;
  color: var(--neon-white);
  margin-bottom: 0.5rem;
}

.burger-desc {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  min-height: 4.5em;
}

.burger-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px dashed rgba(255,167,38,0.2);
}

.burger-price {
  font-family: 'Bungee', cursive;
  font-size: 1.6rem;
  color: var(--neon-orange);
  text-shadow: 0 0 10px rgba(255,167,38,0.4);
}

.burger-weight {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ========================================
   CAROUSEL — galeria wnętrza
======================================== */
.carousel-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.carousel-section .section-inner {
  padding: 0 2rem;
  margin-bottom: 3rem;
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  padding: 0 2rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 auto;
  width: clamp(280px, 35vw, 480px);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2A1F1A 0%, #1A0F0B 100%);
  border: 1px solid rgba(255,167,38,0.15);
}

.carousel-slide::after {
  content: '';
  position: absolute;
  inset: 1rem;
  border: 1px dashed rgba(255,167,38,0.25);
  pointer-events: none;
}

.carousel-slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 1rem;
}

.carousel-slide-icon {
  width: 64px;
  height: 64px;
  opacity: 0.4;
}

.carousel-slide-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--neon-orange);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  background: var(--bg-deep);
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(255,167,38,0.3);
}

.carousel-slide-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-family: 'Bungee', cursive;
  font-size: 1.1rem;
  color: var(--neon-white);
  background: rgba(10,8,7,0.85);
  padding: 0.4rem 1rem;
  backdrop-filter: blur(4px);
  z-index: 4;
}

.carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 0 2rem;
}

.carousel-arrows {
  display: flex;
  gap: 1rem;
}

.carousel-arrow {
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid rgba(255,167,38,0.3);
  color: var(--neon-white);
  font-family: 'Bungee', cursive;
  font-size: 1.2rem;
  cursor: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow:hover:not(:disabled) {
  background: var(--neon-orange);
  color: var(--bg-deep);
  border-color: var(--neon-orange);
  box-shadow: 0 0 15px rgba(255,167,38,0.5);
}

.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-progress {
  display: flex;
  gap: 0.4rem;
}

.carousel-dot {
  width: 24px;
  height: 3px;
  background: rgba(255,167,38,0.2);
  transition: all 0.3s;
  cursor: none;
}

.carousel-dot.active {
  background: var(--neon-orange);
  box-shadow: 0 0 8px var(--neon-orange);
  width: 48px;
}

/* ========================================
   STORY
======================================== */
.story {
  background: linear-gradient(180deg, transparent 0%, rgba(31,20,17,0.5) 50%, transparent 100%);
  position: relative;
  padding: 8rem 2rem;
}

.story-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-text h2 {
  font-family: 'Bungee', cursive;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 2rem;
}

.story-text h2 .year {
  display: block;
  font-family: 'Monoton', cursive;
  color: var(--neon-orange);
  font-size: 1.4em;
  text-shadow: none;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.story-text p {
  font-family: 'Archivo', sans-serif;
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.story-text p strong { color: var(--text-bright); font-weight: 700; }

.story-text p em {
  color: var(--neon-orange);
  font-style: normal;
  font-weight: 700;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px dashed rgba(255,167,38,0.15);
  align-items: flex-start;
  transition: all 0.3s;
  cursor: none;
}

.timeline-item:hover {
  padding-left: 1rem;
  border-bottom-color: var(--neon-orange);
}

.timeline-item:last-child { border-bottom: none; }

.timeline-year {
  font-family: 'Monoton', cursive;
  font-size: 1.5rem;
  color: var(--neon-orange);
  min-width: 80px;
  text-shadow: 0 0 8px rgba(255,167,38,0.4);
  letter-spacing: 0.08em;
}

.timeline-content h4 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  color: var(--neon-white);
  font-size: 1rem;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timeline-content p {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* ========================================
   LOCATION
======================================== */
.location { padding: 8rem 2rem; position: relative; }

.location-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.address-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(255,167,38,0.2);
  padding: 2.5rem;
  position: relative;
  margin-bottom: 2rem;
}

.address-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 30px; height: 30px;
  border-top: 2px solid var(--neon-orange);
  border-left: 2px solid var(--neon-orange);
  box-shadow: -2px -2px 8px rgba(255,167,38,0.3);
}

.address-card::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 30px; height: 30px;
  border-bottom: 2px solid var(--neon-orange);
  border-right: 2px solid var(--neon-orange);
  box-shadow: 2px 2px 8px rgba(255,167,38,0.3);
}

.address-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--neon-orange);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
}

.address-street {
  font-family: 'Bungee', cursive;
  font-size: 2rem;
  color: var(--neon-white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.address-city {
  font-family: 'Archivo', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.address-context {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 0.95rem;
  color: var(--text-bright);
  border-left: 2px solid var(--neon-orange);
  padding-left: 1rem;
  font-style: italic;
}

.hours-table { display: grid; gap: 0.75rem; }

.hours-row {
  display: flex;
  justify-content: space-between;
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(255,167,38,0.1);
}

.hours-row .day {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

.hours-row .time { color: var(--text-bright); font-weight: 700; }
.hours-row.weekend .time { color: var(--neon-orange); }

/* Real Google Map */
.map-wrapper {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-elevated);
  border: 1px solid rgba(255,167,38,0.3);
  overflow: hidden;
  box-shadow: 0 0 30px rgba(255,167,38,0.15);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) brightness(0.9) contrast(1.1) saturate(0.8);
}

.map-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,167,38,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.map-label-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--neon-orange);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  background: var(--bg-deep);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,167,38,0.3);
  z-index: 5;
}

/* ========================================
   FOOTER
======================================== */
footer {
  background: var(--bg-elevated);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(255,167,38,0.15);
  position: relative;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-tagline {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 320px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--neon-orange);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--neon-orange); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px dashed rgba(255,167,38,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom .heritage { color: var(--neon-orange); }

/* ========================================
   REVEAL ANIMATIONS
======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========================================
   MENU PAGE — categories
======================================== */
.menu-categories {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.menu-category-btn {
  background: transparent;
  border: 1px solid rgba(255,167,38,0.3);
  color: var(--text-bright);
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.7rem 1.5rem;
  cursor: none;
  transition: all 0.3s;
}

.menu-category-btn:hover, .menu-category-btn.active {
  background: var(--neon-orange);
  color: var(--bg-deep);
  border-color: var(--neon-orange);
  box-shadow: 0 0 15px rgba(255,167,38,0.4);
}

.menu-category-section {
  margin-bottom: 6rem;
}

.menu-category-title {
  font-family: 'Bungee', cursive;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--neon-white);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}

.menu-category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--neon-orange) 0%, transparent 100%);
  box-shadow: 0 0 8px var(--neon-orange);
}

.menu-category-desc {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

/* Menu items list (for non-burger items) */
.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 1rem 3rem;
}

.menu-list-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(255,167,38,0.15);
  gap: 1rem;
}

.menu-list-item-info {
  flex: 1;
}

.menu-list-item-name {
  font-family: 'Bungee', cursive;
  font-size: 1.1rem;
  color: var(--neon-white);
  margin-bottom: 0.2rem;
}

.menu-list-item-desc {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.menu-list-item-price {
  font-family: 'Bungee', cursive;
  font-size: 1.1rem;
  color: var(--neon-orange);
  text-shadow: 0 0 8px rgba(255,167,38,0.3);
  white-space: nowrap;
}

/* ========================================
   GALLERY PAGE
======================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 4rem;
}

.gallery-item {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2A1F1A 0%, #1A0F0B 100%);
  border: 1px solid rgba(255,167,38,0.15);
  cursor: none;
  transition: all 0.4s;
}

.gallery-item.tall { aspect-ratio: 3/4; }
.gallery-item.wide { aspect-ratio: 16/10; grid-column: span 2; }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 1rem;
  border: 1px dashed rgba(255,167,38,0.2);
  pointer-events: none;
}

.gallery-item:hover {
  transform: scale(1.02);
  border-color: var(--neon-orange);
  box-shadow: 0 0 30px rgba(255,167,38,0.3);
}

.gallery-item-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.gallery-item-icon {
  width: 64px; height: 64px;
  opacity: 0.4;
}

.gallery-item-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--neon-orange);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  background: var(--bg-deep);
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(255,167,38,0.3);
}

@media (max-width: 700px) {
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 1; }
}

/* ========================================
   ABOUT PAGE
======================================== */
.about-section {
  padding: 4rem 2rem 8rem;
}

.about-intro {
  max-width: 800px;
  margin: 0 auto 6rem;
  text-align: center;
}

.about-intro h2 {
  font-family: 'Bungee', cursive;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.about-intro p {
  font-family: 'Archivo', sans-serif;
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.about-values {
  max-width: 1200px;
  margin: 0 auto 6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(255,167,38,0.15);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.value-card:hover {
  border-color: rgba(255,167,38,0.4);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5), 0 0 25px rgba(255,167,38,0.15);
}

.value-icon {
  font-family: 'Monoton', cursive;
  font-size: 3rem;
  color: var(--neon-orange);
  text-shadow: 0 0 15px var(--neon-orange);
  margin-bottom: 1rem;
  display: block;
}

.value-card h3 {
  font-family: 'Bungee', cursive;
  font-size: 1.3rem;
  color: var(--neon-white);
  margin-bottom: 1rem;
}

.value-card p {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========================================
   CONTACT FORM
======================================== */
.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 900px) {
  body { cursor: auto; }
  .cursor-glow, .cursor-dot { display: none; }
  .btn, .timeline-item, .nav-logo, .nav-order, .menu-category-btn,
  .carousel-arrow, .carousel-dot, .gallery-item, .burger-card,
  .lang-switch button { cursor: pointer; }

  nav { padding: 1rem 1.5rem; }

  .nav-toggle { display: block; }

  .nav-right {
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    background: rgba(10,8,7,0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: transform 0.3s;
    border-bottom: 1px solid rgba(255,167,38,0.2);
  }

  .nav-right.open { transform: translateY(0); }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-tagline { margin-left: auto; margin-right: auto; }
  .hero-cta-group { justify-content: center; }
  .hero-logo { order: -1; }
  .neon-logo { max-width: 280px; }

  .anatomy-grid, .story-grid, .location-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .anatomy-sticky { position: relative; height: auto; padding: 4rem 0; }
  .anatomy { min-height: auto; }

  .about-values { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .section { padding: 5rem 1.5rem; }

  .marquee-item { font-size: 1.2rem; }

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

@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Loader — explicit override żeby na malych telefonach nigdy nie wraps */
  .loader-neon {
    font-size: clamp(1.6rem, 8vw, 2.6rem);
    letter-spacing: 0.05em;
  }
}

/* ========================================
   COOKIES BANNER
======================================== */
.cookie-banner {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 9999;
  width: calc(100% - 2rem);
  max-width: 720px;
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 167, 38, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 25px rgba(255, 167, 38, 0.12);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: 'Archivo Narrow', sans-serif;
  color: var(--text-bright);
  font-size: 0.88rem;
  line-height: 1.45;
  transition: transform 0.35s ease;
}

.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
}

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-btn {
  background: var(--neon-orange);
  color: var(--bg-deep);
  border: none;
  font-family: 'Bungee', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.7rem 1.2rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
}

.cookie-banner-btn:hover {
  background: var(--neon-orange-glow);
  box-shadow: 0 0 18px rgba(255, 167, 38, 0.5);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 0.85rem;
    padding: 1rem;
    bottom: 0.6rem;
  }
  .cookie-banner-btn {
    width: 100%;
  }
}

/* ========================================
   MENU PDF DOWNLOAD BUTTON
======================================== */
.menu-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.8rem;
  padding: 0.7rem 1.3rem;
  background: transparent;
  border: 1px solid rgba(255, 167, 38, 0.5);
  color: var(--neon-orange);
  font-family: 'Bungee', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  transition: all 0.25s;
}

.menu-pdf-btn:hover {
  background: var(--neon-orange);
  color: var(--bg-deep);
  box-shadow: 0 0 18px rgba(255, 167, 38, 0.45);
  transform: translateY(-1px);
}

.menu-pdf-btn svg {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .menu-pdf-btn { cursor: pointer; }
}
