/* === VARIABLES & RESET === */
:root {
  --black: #080808;
  --green: #39FF14;
  --green-dim: rgba(57,255,20,0.15);
  --yellow: #FFD600;
  --purple: #7B2FBE;
  --purple-light: #A855F7;
  --purple-glow: rgba(123,47,190,0.4);
  --white: #f0f0f0;
  --gray: #666;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
  cursor: auto;
}

/* === CURSOR (desktop only) === */
.cursor, .cursor-ring { display: none; }

@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  .cursor {
    display: block; position: fixed; width: 10px; height: 10px;
    background: var(--green); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%);
    mix-blend-mode: screen;
  }
  .cursor-ring {
    display: block; position: fixed; width: 32px; height: 32px;
    border: 1px solid rgba(57,255,20,0.5); border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%,-50%);
  }
}

/* === NAVIGATION === */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.2rem;
  transition: background .4s;
}
nav.scrolled {
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(57,255,20,0.06);
}
.nav-logo img {
  display: block; height: 20px;
  filter: drop-shadow(0 0 20px rgba(57,255,20,0.5));
}
.nav-links { display: none; list-style: none; }
.nav-right { display: flex; align-items: center; gap: .8rem; }

.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .4rem;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  position: fixed; inset: 0;
  background: rgba(8,8,8,0.98); z-index: 190;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.nav-drawer.open { opacity: 1; pointer-events: all; }
.nav-drawer a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; letter-spacing: 4px;
  color: var(--white); text-decoration: none;
  transition: color .2s;
}
.nav-drawer a:hover { color: var(--green); }

@media (min-width: 768px) {
  nav { padding: 1.2rem 2.5rem; }
  .nav-logo img, .footer-logo img { height: 25px; }
}
@media (min-width: 900px) {
  .hamburger { display: none; }
  .nav-links { display: flex; gap: 2rem; }
  .nav-links a {
    color: rgba(240,240,240,0.8); text-decoration: none;
    font-size: .75rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--green); }
  .nav-cta {
    background: var(--green) !important; color: var(--black) !important;
    padding: .45rem 1.2rem; font-weight: 700 !important;
    transition: box-shadow .3s !important;
  }
  .nav-cta:hover { box-shadow: 0 0 20px rgba(57,255,20,0.5); }
}
@media (min-width: 1024px) {
  nav { padding: 1.4rem 3.5rem; }
  .nav-links { gap: 2.5rem; }
  .nav-links a { font-size: .78rem; }
}
@media (min-width: 1100px) {
  .nav-logo img, .footer-logo img { height: 35px; }
}

/* === BUTTONS === */
.btn-primary, .btn-ghost, .btn-purple, .btn-free {
  display: inline-block; text-align: center; line-height: 1.2;
  padding: .9rem 1.8rem; font-family: 'Outfit', sans-serif;
  font-size: .78rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer; text-decoration: none;
  border: 1px solid transparent;
  transition: box-shadow .3s, transform .2s;
}
.btn-primary {
  background: var(--green); color: var(--black);
  border-color: var(--green);
}
.btn-primary:hover { box-shadow: 0 0 28px rgba(57,255,20,0.45); transform: translateY(-2px); }

.btn-ghost {
  background: transparent; color: var(--white); font-weight: 600;
  border-color: rgba(240,240,240,0.15);
  transition: border-color .3s, color .3s;
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }

.btn-purple {
  background: var(--purple); color: var(--white);
  margin-top: 1.5rem;
}
.btn-video-play {
  display: inline-flex; align-items: center; gap: .6rem;
}
.btn-purple:hover { box-shadow: 0 0 30px rgba(123,47,190,0.6); transform: translateY(-2px); }

.btn-free {
  background: var(--yellow); color: var(--black);
  padding: 1rem 2.5rem; font-size: .85rem;
  border-color: var(--yellow);
}
.btn-free:hover { box-shadow: 0 0 30px rgba(255,214,0,0.5); transform: translateY(-2px); }

/* === UTILITIES === */
.section-label {
  font-size: .65rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--green); margin-bottom: 1rem;
  display: flex; align-items: center; gap: .8rem;
}
.section-label::before { content: ''; width: 22px; height: 1px; background: var(--green); }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 8vw, 5rem);
  line-height: .95; margin-bottom: 1.2rem;
}

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s, transform .7s;
}
.reveal.visible { opacity: 1; transform: none; }

.about-text {
  color: rgba(240,240,240,0.55); line-height: 1.8; font-size: .9rem; margin-bottom: 1rem;
}

/* === HERO === */
.hero {
  position: relative; height: 100vh; width: 100%;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg-image {
  position: absolute; inset: 0;
  width: 100%; height: auto;
  min-height: 50%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  isolation: isolate;
  background-image: url('images/hero-poster.jpg');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0; margin-bottom: -1px;
  background: linear-gradient(to top,
    rgba(8,8,8,1) 0%, rgba(8,8,8,0.75) 15%,
    rgba(8,8,8,0.25) 35%, rgba(8,8,8,0.1) 100%);
}
/* Filler trzyma video za gradientem (z-index: -1) i kontroluje zachowanie
   na mobilnych — nie usuwać, długo wypracowane */
.hero-bg-image-video-filler {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  min-width: 100%; min-height: 100%;
}
.video-desktop { display: block; }
.hero-bg-image video {
  object-fit: cover;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-height: 100%;
}
@media (min-width: 1024px) { .hero-bg-image { aspect-ratio: unset; } }
.hero-content {
  position: relative; z-index: 2; width: 100%;
  padding: 50vh 1.2rem 3rem;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.hero-right {
  display: flex; flex-direction: row; gap: 1rem;
  opacity: 0; animation: fadeIn 1s 1s forwards;
}
.hero-badge {
  border: 1px solid rgba(57,255,20,0.2);
  padding: .8rem 1rem;
  background: rgba(8,8,8,0.2); backdrop-filter: blur(8px);
  flex: 1; text-align: center;
}
.hero-badge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; color: var(--green); line-height: 1;
  text-shadow: 0 0 20px rgba(57,255,20,0.4);
}
.hero-badge-label {
  font-size: .58rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(240,240,240,0.7); margin-top: .2rem;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 10vw, 4rem);
  line-height: 1; letter-spacing: 3px; white-space: nowrap;
  opacity: 0; animation: slideUp .9s .1s forwards;
}
.hero-title .t-green { color: var(--green); text-shadow: 0 0 40px rgba(57,255,20,0.3); }
.hero-title .t-white { color: var(--white); }
.hero-sub {
  margin-top: .8rem; font-size: .88rem; font-weight: 300; line-height: 1.7;
  color: rgba(240,240,240,0.7);
  opacity: 0; animation: slideUp .8s .6s forwards;
}
.hero-buttons {
  margin-top: 1.2rem; display: flex; flex-direction: column; gap: .8rem;
  opacity: 0; animation: slideUp .8s .75s forwards;
}
.hero-scroll-hint { display: none; }

.video-loader {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; align-items: center; gap: .6rem;
  opacity: 1; transition: opacity 0.6s ease;
}
.video-loader.hidden { opacity: 0; pointer-events: none; }
.video-loader-ring {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 2px solid rgba(57,255,20,0.2);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
.video-loader-label {
  font-size: .55rem; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(57,255,20,0.5);
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (min-width: 480px) {
  .hero-content { padding: 50vh 2rem 3.5rem; }
  .hero-buttons { flex-direction: row; flex-wrap: wrap; gap: 1rem; }
  .hero-buttons a { flex: 1; }
}
@media (min-width: 768px) {
  .hero-content { padding: 50vh 2.5rem 4rem; gap: 1.5rem; }
  .hero-title { font-size: clamp(3rem, 6vw, 5rem); }
  .hero-badge-num { font-size: 2.2rem; }
  .hero-scroll-hint {
    display: flex; align-items: center; gap: .8rem;
    font-size: .62rem; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(240,240,240,0.3);
    opacity: 0; animation: fadeIn 1s 1.6s forwards;
    position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  }
  .scroll-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--green); animation: pulse 2s infinite;
  }
}
@media (min-width: 1024px) {
  .hero-content {
    padding: 50vh 3.5rem 4.5rem;
    display: grid; grid-template-columns: 1fr auto;
    align-items: flex-end; gap: 3rem;
  }
  .hero-overlay {
    background: linear-gradient(to top,
      rgba(8,8,8,1) 0%, rgba(8,8,8,0.75) 25%,
      rgba(8,8,8,0.25) 35%, rgba(8,8,8,0.1) 100%);
  }
  .hero-buttons { flex-direction: row; gap: 1rem; }
  .hero-buttons a { flex: none; }
  .hero-right { flex-direction: column; align-items: flex-end; gap: 1rem; }
  .hero-badge { flex: none; text-align: right; padding: 1.4rem 1.8rem; }
  .hero-badge-num { font-size: 2.8rem; }
  .hero-title { font-size: clamp(3rem, 5.5vw, 6rem); }
}

/* === ABOUT === */
.section-about {
  padding: 3.5rem 1.2rem;
  display: flex; flex-direction: column; gap: 2.5rem;
  max-width: 1400px; margin: 0 auto;
}
.about-img-wrap { position: relative; }
.about-img-wrap::before {
  content: ''; position: absolute;
  top: -12px; left: -12px; right: 12px; bottom: 12px;
  border: 1px solid rgba(57,255,20,0.12); z-index: 0;
}
.about-img-frame {
  position: relative; z-index: 1;
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, #0d1a0d, #111, #0a0a1a);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.about-img-frame .about-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-accent {
  position: absolute; bottom: -1.5rem; right: -1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem; color: rgba(57,255,20,0.03); line-height: 1; z-index: 0;
}
.about-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1rem; margin-top: 2rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem;
  color: var(--green); line-height: 1;
  text-shadow: 0 0 20px rgba(57,255,20,0.25);
}
.stat-lbl { font-size: .62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-top: .2rem; }

@media (min-width: 480px) { .section-about { padding: 3.5rem 2rem; } }
@media (min-width: 768px) {
  .section-about { padding: 5rem 2.5rem; flex-direction: row; gap: 4rem; align-items: center; }
  .about-img-wrap { flex: 1; min-width: 0; }
  .section-about > .reveal:last-child { flex: 1; min-width: 0; }
  .stat-num { font-size: 2.8rem; }
  .about-img-frame { aspect-ratio: 2.6/4; }
}
@media (min-width: 1024px) {
  .section-about { padding: 5rem 3.5rem; gap: 5rem; }
  .stat-num { font-size: 3.2rem; }
  .about-img-frame { aspect-ratio: 3.7/4; }
}

/* === PROGRAMS === */

/* Shared section padding */
.section-night,
.section-sunrise { position: relative; overflow: hidden; padding: 3.5rem 1.2rem; }

@media (min-width: 480px) { .section-night, .section-sunrise { padding: 3.5rem 2rem; } }
@media (min-width: 768px) { .section-night, .section-sunrise { padding: 5rem 2.5rem; } }
@media (min-width: 1024px) { .section-night, .section-sunrise { padding: 5rem 3.5rem; } }

/* Shared feature list — bullet color set per section via CSS custom property */
.program-features { list-style: none; margin: 1.5rem 0; display: flex; flex-direction: column; gap: .8rem; }
.program-features li {
  display: flex; align-items: flex-start; gap: .8rem;
  font-size: .88rem; color: rgba(240,240,240,0.65); line-height: 1.6;
}
.program-features li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--feature-dot); flex-shrink: 0; margin-top: .5rem;
  box-shadow: 0 0 10px var(--feature-glow);
}

.program-orb-tag {
  margin-top: .6rem; font-size: .6rem; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(240,240,240,0.3);
}

/* ADN Night */
.section-night { --feature-dot: var(--purple-light); --feature-glow: rgba(168,85,247,0.8); }
.night-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(123,47,190,0.12) 0%, transparent 70%),
    linear-gradient(180deg, var(--black) 0%, #08000f 50%, var(--black) 100%);
}
.bokeh { position: absolute; inset: 0; overflow: hidden; }
.bokeh span {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(123,47,190,0.6), transparent);
  animation: float linear infinite; filter: blur(1px);
}
.night-inner {
  position: relative; z-index: 1;
  max-width: 1400px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 2.5rem;
}
.night-visual { display: flex; align-items: center; justify-content: center; order: -1; width: 100%; }
.night-orb {
  width: min(100%, 420px); border-radius: 4px;
  background: radial-gradient(circle at 35% 35%, rgba(168,85,247,0.25), rgba(123,47,190,0.1) 50%, transparent 70%);
  border: 1px solid rgba(168,85,247,0.2);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.night-orb::before {
  content: ''; position: absolute; inset: -50%;
  background: conic-gradient(from 0deg, transparent, rgba(168,85,247,0.08) 90deg, transparent 180deg);
  animation: rotate 10s linear infinite;
}

@media (min-width: 768px) {
  .night-inner { flex-direction: row; gap: 4rem; align-items: center; }
  .night-visual { order: 0; flex: 1; }
  .night-orb { width: 100%; min-width: 420px; min-height: 420px; height: auto; aspect-ratio: 1; }
}
@media (min-width: 1024px) { .night-inner { gap: 5rem; } }

/* ADS Sunrise */
.section-sunrise { --feature-dot: var(--yellow); --feature-glow: rgba(255,214,0,0.6); }
.sunrise-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(57,255,20,0.06) 0%, transparent 70%),
    linear-gradient(180deg, var(--black) 0%, #030a03 50%, var(--black) 100%);
}
.sunrise-inner {
  position: relative; z-index: 1;
  max-width: 1400px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 2.5rem;
}
.sunrise-visual { display: flex; align-items: center; justify-content: center; order: -1; width: 100%; }
.sunrise-orb {
  width: min(100%, 420px); height: min(100vw, 420px); border-radius: 4px;
  background: radial-gradient(circle at 35% 35%, rgba(57,255,20,0.12), rgba(57,100,20,0.06) 50%, transparent 70%);
  border: 1px solid rgba(57,255,20,0.15);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.sunrise-orb::before {
  content: ''; position: absolute; inset: -50%;
  background: conic-gradient(from 0deg, transparent, rgba(57,255,20,0.06) 90deg, transparent 180deg);
  animation: rotate 14s linear infinite reverse;
}
.sunrise-orb-inner { position: relative; z-index: 1; text-align: center; }
.sunrise-orb-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 7vw, 3rem); letter-spacing: 4px;
  color: var(--yellow); line-height: 1;
  text-shadow: 0 0 30px rgba(255,214,0,0.4);
}
.sunrise-orb-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 5vw, 2rem); letter-spacing: 3px;
  color: var(--green); text-shadow: 0 0 20px rgba(57,255,20,0.5);
}

@media (min-width: 768px) {
  .sunrise-inner { flex-direction: row; gap: 4rem; align-items: center; }
  .sunrise-visual { order: 0; flex: 1; max-width: 420px; }
  .sunrise-orb { width: 100%; min-width: 420px; min-height: 420px; max-width: 420px; max-height: 420px; height: auto; aspect-ratio: 1; }
}
@media (min-width: 1024px) { .sunrise-inner { gap: 5rem; } }

/* === REVIEWS === */
.section-reviews {
  padding: 3.5rem 1.2rem;
  max-width: 1400px; margin: 0 auto;
}
.reviews-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem;
}
.reviews-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 10vw, 7rem);
  color: rgba(57,255,20,0.05); line-height: 1;
}
.reviews-list {
  display: flex; flex-direction: column;
  gap: 1px; background: rgba(255,255,255,0.04);
}
.review-card {
  background: var(--black); padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: background .3s;
}
.review-card:hover { background: rgba(57,255,20,0.02); }
.review-card.hidden { display: none; }
.review-top { display: flex; align-items: center; gap: 1rem; }
.review-monogram {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(57,255,20,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem;
  color: var(--green); background: rgba(57,255,20,0.04); flex-shrink: 0;
}
.review-name { font-size: .85rem; font-weight: 600; }
.review-stars { color: var(--yellow); letter-spacing: 2px; font-size: .72rem; margin-top: .2rem; }
.review-text {
  font-size: .9rem; line-height: 1.75;
  color: rgba(240,240,240,0.68); font-style: italic;
}
.reviews-load-more { display: flex; justify-content: center; margin-top: 2rem; }
.btn-load-more {
  background: transparent; color: rgba(240,240,240,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  padding: .8rem 2rem; font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: .75rem; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer;
  transition: border-color .3s, color .3s;
}
.btn-load-more:hover { border-color: var(--green); color: var(--green); }
.btn-load-more.all-loaded { opacity: .3; pointer-events: none; }

@media (min-width: 480px) { .section-reviews { padding: 3.5rem 2rem; } }
@media (min-width: 768px) {
  .section-reviews { padding: 5rem 2.5rem; }
  .review-card { flex-direction: row; align-items: center; gap: 2rem; padding: 1.8rem 2rem; }
  .review-top { flex-direction: column; align-items: center; flex-shrink: 0; gap: .4rem; }
  .review-author-info { text-align: center; }
  .review-text { flex: 1; }
}
@media (min-width: 1024px) { .section-reviews { padding: 5rem 3.5rem; } }

/* === CHOREOGRAFIE === */
.section-choreo {
  padding: 3.5rem 1.2rem;
}
.choreo-inner { max-width: 1400px; margin: 0 auto; }
.choreo-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
.choreo-card {
  cursor: pointer; display: flex; flex-direction: column; gap: 1rem;
  text-decoration: none; color: var(--white);
}
.choreo-thumb {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
  border: 1px solid rgba(57,255,20,0.1);
}
.choreo-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.65);
}
.choreo-card:hover .choreo-thumb img {
  transform: scale(1.04); filter: brightness(0.45);
}
.choreo-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.choreo-play-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(8,8,8,0.82);
  border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
}
.choreo-play-btn::after {
  content: '';
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent var(--green);
  margin-left: 4px;
}
.choreo-card:hover .choreo-play-btn {
  box-shadow: 0 0 32px rgba(57,255,20,0.45);
}
.choreo-info { display: flex; flex-direction: column; gap: .3rem; }
.choreo-tag {
  font-size: .65rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--green);
}
.choreo-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; letter-spacing: 2px;
}

@media (min-width: 480px) { .section-choreo { padding: 3.5rem 2rem; } }
@media (min-width: 768px) {
  .section-choreo { padding: 5rem 2.5rem; }
  .choreo-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (min-width: 1024px) {
  .section-choreo { padding: 5rem 3.5rem; }
  .choreo-grid { gap: 3rem; }
  .choreo-play-btn { width: 68px; height: 68px; }
  .choreo-play-btn::after { border-width: 11px 0 11px 20px; margin-left: 5px; }
}

/* === VIDEO MODAL === */
.video-modal {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-modal.open { opacity: 1; pointer-events: all; }
.video-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(6px);
}
.video-modal-box {
  position: relative; z-index: 1;
  width: min(92vw, 960px);
}
.video-modal-box.portrait {
  width: min(85vw, calc(85vh * 9 / 16));
}
.video-modal-close {
  position: absolute; top: 0.6rem; right: 0.6rem; z-index: 2;
  background: rgba(8,8,8,0.35); border: none;
  color: rgba(240,240,240,0.6); font-size: 1rem;
  width: 36px; height: 36px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s;
}
.video-modal-close:hover { color: var(--white); }
.video-modal-frame {
  position: relative; aspect-ratio: 16/9;
  background: #000;
}
.video-modal-frame.portrait { aspect-ratio: 9/16; }
#modalVideo {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none; background: #000;
}

/* === LOCATIONS === */
.section-locations {
  padding: 3.5rem 1.2rem;
  background: rgba(255,255,255,0.01);
  border-top: 1px solid rgba(255,255,255,0.03);
}
.locations-inner { max-width: 1400px; margin: 0 auto; }
.locations-layout { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.location-cards { display: flex; flex-direction: column; gap: 1px; background: rgba(255,255,255,0.04); }
.location-card {
  background: var(--black); padding: 1.5rem 1.8rem;
  cursor: pointer; transition: background .3s;
  display: flex; flex-direction: column; gap: .6rem;
}
.location-card:hover { background: rgba(57,255,20,0.025); }
.location-card.active { background: rgba(57,255,20,0.04); border-left: 2px solid var(--green); }
.loc-header { display: flex; align-items: center; gap: .8rem; }
.loc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px rgba(57,255,20,0.6); flex-shrink: 0; }
.loc-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 2px; }
.loc-address { font-size: .8rem; color: rgba(240,240,240,0.45); line-height: 1.5; padding-left: 1.3rem; }
.loc-days { font-size: .65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--green); padding-left: 1.3rem; }
.loc-btn {
  align-self: flex-start; margin-left: 1.3rem; margin-top: .2rem;
  background: transparent; border: 1px solid rgba(57,255,20,0.3);
  color: var(--green); padding: .5rem 1rem;
  font-size: .68rem; letter-spacing: 2px; text-transform: uppercase;
  font-family: 'Outfit', sans-serif; font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.loc-btn:hover { background: var(--green); color: var(--black); }
.loc-btn-disabled { opacity: 0.3; pointer-events: none; }
.map-wrap {
  position: relative; height: 0; opacity: 0;
  overflow: hidden; background: #0d1a0d;
  transition: height 0.55s cubic-bezier(0.25, 0, 0, 1), opacity 0.45s ease;
}
@media (max-width: 767px) {
  .map-wrap.active { height: 280px; opacity: 1; }
}
.map-wrap iframe {
  position: absolute;
  width: 100%; height: 280px; border: none;
  filter: invert(90%) hue-rotate(120deg) saturate(0.5) brightness(0.8);
  pointer-events: none;
}
.map-pin-overlay {
  position: absolute; top: 0; left: 0; right: 0; height: 280px;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.map-pin { display: flex; flex-direction: column; align-items: center; }
.map-pin-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 20px rgba(57,255,20,0.8);
  border: 2px solid var(--black); animation: pulse 2s infinite;
}
.map-pin-line { width: 2px; height: 20px; background: var(--green); opacity: .6; }
.map-pin-label {
  background: var(--black); border: 1px solid var(--green);
  padding: .3rem .7rem; font-size: .6rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--green); white-space: nowrap; margin-top: .2rem;
}
.locations-hint {
  font-size: .65rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(57,255,20,0.6); text-align: center; padding: .9rem 1rem;
  background: rgba(255,255,255,0.04);
  animation: hintPulse 2.5s ease-in-out infinite;
  overflow: hidden; max-height: 5rem;
  transition: max-height 0.55s ease 0.45s, opacity 0.7s ease, padding 0.55s ease 0.45s, transform 0.7s ease;
}
.locations-hint.dismissed {
  max-height: 0; opacity: 0; padding-top: 0; padding-bottom: 0;
  animation: none;
}
@keyframes hintPulse {
  0%, 100% { color: rgba(57,255,20,0.35); }
  50% { color: rgba(57,255,20,0.9); }
}

@media (min-width: 480px) { .section-locations { padding: 3.5rem 2rem; } }
@media (min-width: 768px) {
  .section-locations { padding: 5rem 2.5rem; }
  .locations-hint { display: none; }
  .location-cards {
    position: relative;
    padding-right: calc(55% + 2.5rem);
    background: transparent;
    min-height: 420px;
  }
  .map-wrap {
    display: none; height: 100%; transition: none; margin: 0;
    position: absolute; top: 0; right: 0; width: 55%;
  }
  .map-wrap.active { display: block; opacity: 1; }
  .map-wrap iframe { position: absolute; inset: 0; height: 100%; }
  .map-pin-overlay { inset: 0; height: auto; }
}
@media (min-width: 1024px) {
  .section-locations { padding: 5rem 3.5rem; }
  .location-cards { min-height: 500px; }
}

/* === NEWSLETTER (wyłączony — zachowany na przyszłość) === */
.section-newsletter { padding: 3.5rem 1.2rem; position: relative; overflow: hidden; }
.newsletter-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,214,0,0.05) 0%, transparent 70%);
}
.newsletter-inner {
  position: relative; z-index: 1;
  max-width: 680px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.newsletter-bottom { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.newsletter-inner .section-label { justify-content: center; }
.newsletter-inner .section-label::before { display: none; }
.newsletter-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 15vw, 9rem);
  color: var(--yellow); line-height: .9;
  text-shadow: 0 0 60px rgba(255,214,0,0.25); margin: .5rem 0;
}
.newsletter-sub {
  font-size: .95rem; color: rgba(240,240,240,0.6);
  line-height: 1.8; margin-bottom: 2.5rem;
  max-width: 580px; margin-left: auto; margin-right: auto;
}
.free-checks {
  list-style: none; margin: 2rem auto 2.5rem;
  display: inline-flex; flex-direction: column; gap: .9rem; text-align: left;
}
.free-checks li {
  display: flex; align-items: center; gap: .9rem;
  font-size: .92rem; color: rgba(240,240,240,0.75); line-height: 1.5;
}
.free-checks li::before {
  content: '✓'; flex-shrink: 0;
  color: var(--yellow); font-size: 1rem; font-weight: 700;
}
@media (min-width: 480px) { .section-newsletter { padding: 3.5rem 2rem; } }
@media (min-width: 768px) { .section-newsletter { padding: 5rem 2.5rem; } }
@media (min-width: 1024px) {
  .section-newsletter { padding: 5rem 3.5rem; }
  .newsletter-bottom { flex-direction: row; justify-content: center; align-items: center; gap: 4rem; }
  .free-checks { margin: 0; }
}

/* === SOCIAL === */
.section-social {
  padding: 3.5rem 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.03);
}
.social-inner { max-width: 1400px; margin: 0 auto; }
.social-intro { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.social-sub { font-size: .88rem; color: rgba(240,240,240,0.45); line-height: 1.6; }
.social-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(255,255,255,0.04);
}
.social-card {
  background: var(--black); padding: 1.5rem 1.2rem;
  text-decoration: none; color: var(--white);
  display: flex; flex-direction: column; gap: .7rem;
  transition: background .3s; position: relative; overflow: hidden;
}
.social-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; transform: scaleX(0);
  transition: transform .3s; transform-origin: left;
}
.social-card:hover { background: rgba(255,255,255,0.02); }
.social-card:hover::before { transform: scaleX(1); }
.sc-instagram::before { background: linear-gradient(90deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.sc-tiktok::before    { background: linear-gradient(90deg,#010101,#69C9D0,#EE1D52); }
.sc-youtube::before   { background: #FF0000; }
.sc-facebook::before  { background: #1877F2; }
.sc-spotify::before   { background: #1DB954; }
.social-card-icon { opacity: .85; line-height: 0; }
.sc-instagram .social-card-icon { color: #E1306C; }
.sc-tiktok    .social-card-icon { color: #69C9D0; }
.sc-youtube   .social-card-icon { color: #FF0000; }
.sc-facebook  .social-card-icon { color: #1877F2; }
.sc-spotify   .social-card-icon { color: #1DB954; }
.social-card-platform { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 2px; }
.social-card-desc { font-size: .72rem; color: rgba(240,240,240,0.4); line-height: 1.5; flex: 1; }
.social-card-cta { font-size: .62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--green); font-weight: 600; }
.sc-spotify { grid-column: span 2; }

@media (min-width: 480px) { .section-social { padding: 3.5rem 2rem; } }
@media (min-width: 640px) { .sc-spotify { grid-column: span 1; } }
@media (min-width: 768px) {
  .section-social { padding: 5rem 2.5rem; }
  .social-intro { flex-direction: row; justify-content: space-between; align-items: flex-end; }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .sc-spotify { grid-column: span 1; }
}
@media (min-width: 1024px) {
  .section-social { padding: 5rem 3.5rem; }
  .social-grid { grid-template-columns: repeat(5, 1fr); }
  .social-card { padding: 2rem 1.6rem; }
  .social-card-icon { font-size: 1.6rem; }
  .social-card-platform { font-size: 1.4rem; }
  .social-card-desc { font-size: .78rem; }
}

/* === FOOTER === */
footer {
  padding: 2rem 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; flex-direction: column; gap: .5rem; align-items: center; text-align: center;
}
.footer-logo img { display: block; height: 20px; }
.footer-copy { font-size: .65rem; color: var(--gray); letter-spacing: 1px; }

@media (min-width: 768px) {
  footer { flex-direction: row; justify-content: space-between; padding: 2rem 2.5rem; text-align: left; }
}
@media (min-width: 1024px) { footer { padding: 2.5rem 3.5rem; } }

/* === ANIMATIONS === */
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(57,255,20,0.6); }
  50%       { box-shadow: 0 0 20px rgba(57,255,20,1); }
}
@keyframes float {
  from { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .3; }
  to   { transform: translateY(-100px) scale(1); opacity: 0; }
}
