/* ============================================================
   BEESHOT — nowoczesny motyw 2026
   ============================================================ */
:root {
  --gold: #f1b51a;
  --gold-soft: #ffd35c;
  --gold-dark: #c8940e;
  --bg: #0b0b0d;
  --bg-2: #121215;
  --card: #17171b;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f5f5f4;
  --muted: #a8a8ad;
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: #111; }

/* pasek przewijania */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2c2c31; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

h1, h2, h3, .display {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.15;
}

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

/* ============ PRELOADER ============ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 18px;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader .hex-spin {
  width: 64px; height: 64px;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  animation: hexPulse 1.1s ease-in-out infinite;
}
@keyframes hexPulse {
  0%, 100% { transform: rotate(0deg) scale(1); opacity: 1; }
  50% { transform: rotate(90deg) scale(0.82); opacity: 0.7; }
}
.preloader p {
  font-family: 'Oswald', sans-serif; text-transform: uppercase;
  letter-spacing: 0.35em; font-size: 0.8rem; color: var(--gold);
}

/* ============ NAWIGACJA ============ */
.main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 2.2rem;
  background: rgba(11, 11, 13, 0.55);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: padding 0.4s var(--ease), background 0.4s, border-color 0.4s;
}
.main-nav.scrolled {
  background: rgba(11, 11, 13, 0.88);
  border-bottom-color: var(--line);
  padding-top: 0.35rem; padding-bottom: 0.35rem;
}
.main-nav .logo img {
  height: 84px; width: auto;
  transition: height 0.4s var(--ease), filter 0.3s;
  filter: drop-shadow(0 2px 10px rgba(241, 181, 26, 0.25));
}
.main-nav.scrolled .logo img { height: 62px; }
.main-nav .logo a:hover img { filter: drop-shadow(0 2px 16px rgba(241, 181, 26, 0.55)); }

.menu { display: flex; gap: 2.2rem; align-items: center; }
.menu a {
  position: relative;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.92rem; font-weight: 500;
  text-decoration: none; color: var(--text);
  padding: 0.4rem 0;
  transition: color 0.3s;
}
.menu a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.menu a:hover, .menu a.active { color: var(--gold); }
.menu a:hover::after, .menu a.active::after { transform: scaleX(1); transform-origin: left; }

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

/* Sparta CTA */
.sparta-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 20px 7px 10px;
  border: 1.5px solid rgba(224, 168, 46, 0.7); border-radius: 44px;
  background: rgba(224, 168, 46, 0.1);
  color: #f7ead0; font-size: 0.74rem; line-height: 1.2;
  font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s var(--ease);
}
.sparta-cta img { height: 40px; width: auto; transition: transform 0.3s; }
.sparta-cta b { display: block; color: var(--gold); font-weight: 800; }
.sparta-cta:hover {
  background: var(--gold); color: #161616;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(241, 181, 26, 0.35);
}
.sparta-cta:hover b { color: #161616; }
.sparta-cta:hover img { transform: scale(1.1) rotate(-6deg); }

.social-links { display: flex; gap: 0.5rem; }
.social-links a {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}
.social-links a img { width: 18px; height: 18px; }
.social-links a:hover {
  border-color: var(--gold);
  background: rgba(241, 181, 26, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(241, 181, 26, 0.25);
}

/* hamburger */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; position: relative; z-index: 1200;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px; margin: 6px auto;
  background: var(--text); transition: 0.35s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 9rem 1.5rem 4rem;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: -5%;
  z-index: -2;
  background: url('../img/baner1.png') center / cover no-repeat;
  animation: heroZoom 18s var(--ease) infinite alternate;
  will-change: transform;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(241, 181, 26, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(11,11,13,0.82) 0%, rgba(11,11,13,0.55) 45%, rgba(11,11,13,0.94) 100%);
}
.hero .kicker {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase; letter-spacing: 0.45em;
  color: var(--gold); font-size: 0.85rem; font-weight: 500;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 0.25s forwards;
}
.hero h1 {
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 700; margin: 1rem 0 1.2rem;
}
.hero h1 .word {
  display: inline-block; overflow: hidden; vertical-align: bottom;
}
.hero h1 .word span {
  display: inline-block; transform: translateY(110%);
  animation: wordUp 0.9s var(--ease) forwards;
}
.hero h1 .gold { color: var(--gold); }
@keyframes wordUp { to { transform: translateY(0); } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero .lead {
  max-width: 640px; color: var(--muted); font-size: 1.08rem;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 0.75s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  margin-top: 2.4rem;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 0.95s forwards;
}

/* wskaźnik scrolla */
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 44px; border: 2px solid rgba(255,255,255,0.35);
  border-radius: 14px;
}
.scroll-hint::after {
  content: ""; position: absolute; top: 8px; left: 50%;
  width: 4px; height: 8px; margin-left: -2px;
  border-radius: 2px; background: var(--gold);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* cząsteczki-heksy w hero */
.hex-field { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hex-field i {
  position: absolute;
  width: 22px; height: 22px;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  background: rgba(241, 181, 26, 0.16);
  animation: floatHex linear infinite;
}
@keyframes floatHex {
  from { transform: translateY(110vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  to { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

/* ============ PRZYCISKI ============ */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.95rem; font-weight: 600;
  padding: 0.95rem 2.4rem;
  border: none; border-radius: 999px;
  cursor: pointer; text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  overflow: hidden;
}
.btn-gold {
  background: linear-gradient(120deg, var(--gold-soft), var(--gold) 45%, var(--gold-dark));
  background-size: 200% 100%;
  color: #151004;
  box-shadow: 0 8px 28px rgba(241, 181, 26, 0.35);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(241, 181, 26, 0.5);
  background-position: 100% 0;
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: var(--text);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  border-color: var(--gold); color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.btn-pulse { animation: btnPulse 2.6s ease-in-out infinite; }
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(241, 181, 26, 0.35); }
  50% { box-shadow: 0 8px 44px rgba(241, 181, 26, 0.65); }
}

/* ============ MARQUEE ============ */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden; white-space: nowrap;
  padding: 0.9rem 0;
}
.marquee-track {
  display: inline-flex; gap: 3rem;
  animation: marquee 28s linear infinite;
}
.marquee span {
  font-family: 'Oswald', sans-serif; text-transform: uppercase;
  letter-spacing: 0.3em; font-size: 0.85rem; color: var(--muted);
}
.marquee span b { color: var(--gold); font-weight: 600; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ KARTY CTA (bilety) ============ */
.tickets {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.6rem;
  max-width: 1200px; margin: 0 auto; padding: 5rem 1.5rem;
}
.ticket-card {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; align-items: flex-end;
  text-decoration: none;
  border: 1px solid var(--line);
  transform-style: preserve-3d;
  transition: transform 0.45s var(--ease), box-shadow 0.45s, border-color 0.45s;
}
.ticket-card .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.8s var(--ease), filter 0.6s;
  filter: saturate(0.85) brightness(0.85);
}
.ticket-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(8, 8, 10, 0.92) 100%);
  transition: background 0.5s;
}
.ticket-card:hover {
  transform: translateY(-8px);
  border-color: rgba(241, 181, 26, 0.6);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(241, 181, 26, 0.25), 0 10px 40px rgba(241, 181, 26, 0.18);
}
.ticket-card:hover .bg { transform: scale(1.08); filter: saturate(1.1) brightness(1); }
.ticket-inner {
  position: relative; z-index: 2;
  padding: 2.2rem; width: 100%;
}
.ticket-inner .icon-ring {
  width: 76px; height: 76px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(241, 181, 26, 0.14);
  border: 1.5px solid rgba(241, 181, 26, 0.5);
  backdrop-filter: blur(8px);
  margin-bottom: 1.1rem;
  transition: transform 0.45s var(--ease), background 0.45s;
}
.ticket-inner .icon-ring img { width: 38px; height: 38px; }
.ticket-card:hover .icon-ring { transform: scale(1.1) rotate(-8deg); background: rgba(241, 181, 26, 0.28); }
.ticket-inner h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: #fff; margin-bottom: 0.5rem;
}
.ticket-inner p { color: var(--muted); font-size: 0.98rem; max-width: 420px; }
.ticket-inner .arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.1rem;
  font-family: 'Oswald', sans-serif; text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 0.85rem; color: var(--gold);
}
.ticket-inner .arrow::after {
  content: "→"; transition: transform 0.35s var(--ease);
}
.ticket-card:hover .arrow::after { transform: translateX(8px); }

/* ============ SEKCJE ============ */
.section { padding: 5.5rem 1.5rem; position: relative; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-head { text-align: center; margin-bottom: 3rem; }
.section-head .kicker {
  font-family: 'Oswald', sans-serif; text-transform: uppercase;
  letter-spacing: 0.4em; font-size: 0.8rem; color: var(--gold);
  display: block; margin-bottom: 0.8rem;
}
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.section-head h2 .gold { color: var(--gold); }

/* pas "dołącz do nas" */
.join-band {
  position: relative;
  background:
    radial-gradient(ellipse 60% 120% at 50% 0%, rgba(241, 181, 26, 0.12), transparent 70%),
    var(--bg-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  text-align: center;
  overflow: hidden;
}
.join-band .honeycomb {
  position: absolute; inset: 0; opacity: 0.05; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='56' height='100' viewBox='0 0 56 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100' fill='none' stroke='%23f1b51a' stroke-width='2'/%3E%3C/svg%3E");
  background-size: 56px 100px;
}
.join-band h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.8rem; }
.join-band p { color: var(--muted); font-size: 1.1rem; max-width: 560px; margin: 0 auto 1.8rem; }

/* o strzelnicy */
.about-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem; align-items: center;
}
.about-copy p { font-size: 1.08rem; color: #d6d6d9; margin-bottom: 1.2rem; }
.about-copy .highlight { color: var(--text); font-weight: 600; font-size: 1.15rem; }
.about-visual { position: relative; }
.about-visual .frame {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.about-visual .frame img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.about-visual:hover .frame img { transform: scale(1.06); }
.about-visual::before {
  content: ""; position: absolute; inset: -18px -18px auto auto;
  width: 120px; height: 120px; z-index: -1;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  background: linear-gradient(135deg, var(--gold), transparent 70%);
  opacity: 0.55;
  animation: spinSlow 14s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

.feature-chips {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.9rem; margin-top: 1.8rem;
}
.chip {
  display: flex; align-items: center; gap: 0.7rem;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 12px; padding: 0.85rem 1rem;
  font-size: 0.92rem; color: #e6e6e9;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.chip:hover {
  border-color: rgba(241, 181, 26, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}
.chip .dot {
  flex: none; width: 34px; height: 34px;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  background: rgba(241, 181, 26, 0.18);
  display: grid; place-items: center;
  font-size: 0.95rem;
}

/* ============ MAPA ============ */
.map-section { padding: 0 1.5rem 5.5rem; }
.map-wrap {
  max-width: 1200px; margin: 0 auto;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  position: relative;
}
.map-wrap iframe {
  width: 100%; height: 480px; border: 0; display: block;
  filter: grayscale(0.9) invert(0.92) contrast(0.9) hue-rotate(185deg);
  transition: filter 0.6s var(--ease);
}
.map-wrap:hover iframe { filter: none; }
.map-pill {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  background: rgba(11, 11, 13, 0.85); backdrop-filter: blur(10px);
  border: 1px solid rgba(241, 181, 26, 0.4);
  border-radius: 999px; padding: 0.55rem 1.2rem;
  font-family: 'Oswald', sans-serif; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.8rem; color: var(--gold);
  pointer-events: none;
}

/* ============ TREŚĆ / REGULAMIN / FORM ============ */
.content-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 3.5rem);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.content-card p { color: #d6d6d9; margin-bottom: 1.1rem; }
.content-card h3 {
  color: var(--gold); font-size: 1.5rem; margin: 2.6rem 0 0.3rem;
}
.content-card h4 {
  font-family: 'Oswald', sans-serif; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text);
  font-size: 1.1rem; margin-bottom: 1.2rem;
}
.chapter-num {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; margin-right: 12px;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  background: rgba(241, 181, 26, 0.16);
  color: var(--gold); font-family: 'Oswald', sans-serif; font-size: 1.1rem;
  vertical-align: middle;
}

/* strona hero mniejsze (podstrony) */
.page-hero {
  position: relative;
  padding: 11rem 1.5rem 5rem;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,11,13,0.85), rgba(11,11,13,0.96)),
    url('../img/baner2.png') center / cover no-repeat;
}
.page-hero .kicker {
  font-family: 'Oswald', sans-serif; text-transform: uppercase;
  letter-spacing: 0.4em; font-size: 0.8rem; color: var(--gold);
  display: block; margin-bottom: 0.9rem;
}
.page-hero h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }

/* formularz */
.contact-form { max-width: 640px; margin: 0 auto; }
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block; margin-bottom: 0.5rem;
  font-family: 'Oswald', sans-serif; text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 0.82rem; color: var(--muted);
}
.form-group input, .form-group textarea {
  width: 100%; padding: 0.95rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line); border-radius: 12px;
  color: var(--text); font-size: 1rem; font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(241, 181, 26, 0.05);
  box-shadow: 0 0 0 4px rgba(241, 181, 26, 0.15);
}

/* dane kontaktowe */
.contact-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem; max-width: 900px; margin: 0 auto 3.5rem;
}
.contact-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem;
  text-align: center;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(241, 181, 26, 0.55);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}
.contact-card .icon-ring {
  width: 58px; height: 58px; margin: 0 auto 1rem;
  border-radius: 50%; display: grid; place-items: center;
  background: rgba(241, 181, 26, 0.14);
  border: 1.5px solid rgba(241, 181, 26, 0.45);
}
.contact-card .icon-ring img { width: 24px; height: 24px; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.contact-card a { color: var(--gold); text-decoration: none; font-size: 1.05rem; }
.contact-card a:hover { text-decoration: underline; }
.contact-card p { color: var(--muted); font-size: 0.95rem; }

/* ============ STOPKA ============ */
footer {
  background: #08080a;
  border-top: 1px solid var(--line);
  padding: 4.5rem 2rem 2rem;
  position: relative; overflow: hidden;
}
footer::before {
  content: ""; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(900px, 90%); height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}
.footer-col h3 {
  color: var(--gold); font-size: 1.05rem; margin-bottom: 1.1rem;
  position: relative; display: inline-block; padding-bottom: 8px;
}
.footer-col h3::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 42px; height: 2px; background: var(--gold);
}
.footer-col h4 {
  color: var(--gold); font-size: 0.95rem; margin: 1.4rem 0 0.6rem;
}
.footer-col p, .footer-col li { color: var(--muted); font-size: 0.95rem; margin-bottom: 0.55rem; }
.footer-col ul { list-style: none; }
.footer-col ul a, .footer-col p a {
  color: var(--muted); text-decoration: none; transition: color 0.3s, padding-left 0.3s;
}
.footer-col ul a:hover, .footer-col p a:hover { color: var(--gold); }
.footer-col ul a:hover { padding-left: 6px; }
.footer-col .contact-line { display: flex; align-items: center; gap: 10px; }
.footer-col .contact-line img { width: 18px; height: 18px; }
.footer-logo img { max-width: 160px; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.footer-bottom {
  max-width: 1200px; margin: 3rem auto 0; padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem;
  color: #6f6f75; font-size: 0.85rem;
}

/* przycisk "do góry" */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(241, 181, 26, 0.5);
  background: rgba(11, 11, 13, 0.85); backdrop-filter: blur(8px);
  color: var(--gold); font-size: 1.2rem; cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: all 0.35s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold); color: #111; box-shadow: 0 10px 26px rgba(241, 181, 26, 0.4); }

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0; transform: translateY(38px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-left { transform: translateX(-46px); }
.reveal-right { transform: translateX(46px); }
.reveal-left.in, .reveal-right.in { transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============ MODAL BOOKIT ============ */
.sparta-modal { position: fixed; inset: 0; z-index: 2147483000; background: rgba(0,0,0,0.65); backdrop-filter: blur(4px); display: none; }
.sparta-modal.open { display: block; animation: modalIn 0.3s var(--ease); }
@keyframes modalIn { from { opacity: 0; } to { opacity: 1; } }
.sparta-modal iframe { position: fixed; inset: 0; width: 100%; height: 100%; border: 0; background: #fff; }
.sparta-modal-close {
  position: fixed; top: 14px; right: 16px; z-index: 2147483001;
  width: 46px; height: 46px; border-radius: 50%; border: 0;
  background: rgba(20,20,20,0.88); color: #fff; font-size: 24px; line-height: 1;
  cursor: pointer; transition: 0.2s; box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.sparta-modal-close:hover { background: var(--gold); color: #161616; transform: rotate(90deg); }

/* ============ RESPONSYWNOŚĆ ============ */
@media (max-width: 1100px) {
  .sparta-cta span { display: none; }
  .sparta-cta { padding: 6px; border-radius: 50%; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .menu {
    position: fixed; inset: 0;
    flex-direction: column; justify-content: center; gap: 2rem;
    background: rgba(8, 8, 10, 0.97); backdrop-filter: blur(20px);
    opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
    z-index: 1100;
  }
  .menu.open { opacity: 1; visibility: visible; }
  .menu a { font-size: 1.5rem; }
  .social-links { display: none; }
  .main-nav .logo img { height: 64px; }
  .main-nav.scrolled .logo img { height: 54px; }
  .tickets { padding: 3.5rem 1.2rem; }
  .ticket-card { min-height: 340px; }
  .section { padding: 4rem 1.2rem; }
  .map-wrap iframe { height: 380px; }
}
