/* ============================================================
   KYOKUSHIN SUMMER CAMP — stylesheet
   Colors: #FF6A00 (orange) · #0B1A2E (navy) · #1E90FF (blue)
   ============================================================ */

/* ---------- Reset & Custom Properties ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:     #FF6A00;
  --orange-lt:  #FF8C35;
  --navy:       #0B1A2E;
  --navy-lt:    #132540;
  --blue:       #1E90FF;
  --blue-lt:    #56AFFF;
  --white:      #FFFFFF;
  --off-white:  #F4F6FA;
  --muted:      #94A3B8;
  --border:     rgba(255,255,255,.08);
  --card-bg:    rgba(19, 37, 64, .7);

  --font-head:    'Bebas Neue', sans-serif;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Space Grotesk', sans-serif;
  --font-jp:      'Noto Sans JP', sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.25);
  --shadow-md:  0 8px 32px rgba(0,0,0,.35);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.45);
  --shadow-orange: 0 8px 40px rgba(255,106,0,.35);

  --transition: .3s cubic-bezier(.4,0,.2,1);
  --transition-slow: .6s cubic-bezier(.4,0,.2,1);

  --section-pad: clamp(60px, 8vw, 120px);
  --container:   1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ---------- Container ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(.97); }

.btn--primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-lt));
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn--primary:hover { box-shadow: 0 12px 50px rgba(255,106,0,.5); transform: translateY(-2px); }

.btn--ghost {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { border-color: var(--orange); color: var(--orange); }

.btn--outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn--outline:hover { background: var(--orange); color: var(--white); }

.btn--nav {
  background: var(--orange);
  color: var(--white);
  padding: 9px 22px;
  font-size: .88rem;
}

.btn--lg { padding: 16px 40px; font-size: 1.05rem; }
.btn--sm { padding: 8px 18px; font-size: .85rem; }
.btn--full { width: 100%; justify-content: center; }

.btn__spinner {
  width: 18px; height: 18px;
  animation: spin 1s linear infinite;
}
.hidden { display: none !important; }

/* ---------- Section commons ---------- */
.section { padding: var(--section-pad) 0; }

.section__header { margin-bottom: clamp(32px, 5vw, 64px); }
.section__header--center { text-align: center; }

.section__tag {
  display: inline-block;
  background: rgba(255,106,0,.15);
  color: var(--orange);
  border: 1px solid rgba(255,106,0,.3);
  border-radius: var(--radius-xl);
  padding: 5px 18px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: .01em;
  color: var(--white);
  text-transform: uppercase;
}
.section__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--orange), var(--blue-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Animations ---------- */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.9); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes rotateSlow {
  to { transform: rotate(360deg); }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(255,106,0,.4); }
  70%  { box-shadow: 0 0 0 20px rgba(255,106,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,106,0,0); }
}
@keyframes particle-rise {
  0%   { transform: translateY(0) scale(1); opacity: .6; }
  100% { transform: translateY(-120vh) scale(.3); opacity: 0; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(11,26,46,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px,4vw,48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav__logo-img {
  width: 48px; height: 48px;
  object-fit: contain;
}
.nav__logo-text {
  font-family: var(--font-head);
  font-size: .9rem;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: .05em;
}
.nav__logo-text small {
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: .12em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  list-style: none;
}
.nav__links a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: var(--transition);
}
.nav__links a:hover { color: var(--orange); }

/* YouTube Stream link */
.nav__yt {
  display: flex !important;
  align-items: center;
  gap: 6px;
  color: #fff !important;
  background: rgba(255,0,0,.15);
  border: 1px solid rgba(255,0,0,.3);
  border-radius: 20px;
  padding: 5px 14px !important;
  transition: var(--transition);
}
.nav__yt svg { flex-shrink: 0; }
.nav__yt:hover {
  background: #ff0000 !important;
  border-color: #ff0000 !important;
  color: #fff !important;
}
.nav__new {
  display: inline-block;
  color: #fff !important;
  background: linear-gradient(135deg, var(--orange), #e85500);
  border-radius: 20px;
  padding: 5px 16px !important;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(255,106,0,.3);
  transition: var(--transition);
}
.nav__new:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,106,0,.45); color: #fff !important; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,106,0,.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(30,144,255,.15) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, #0d2040 100%);
}
.hero__particles {
  position: absolute;
  inset: 0;
}
.particle {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--orange);
  animation: particle-rise linear infinite;
  opacity: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 1080px;
  animation: fadeUp .9s ease both;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 8px 22px 8px 12px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  animation: fadeIn 1s .2s ease both;
}
.hero__badge-kanji {
  font-family: var(--font-jp);
  font-size: 1.1rem;
  color: var(--orange);
  background: rgba(255,106,0,.15);
  width: 32px; height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-head);
  letter-spacing: .05em;
  line-height: .95;
}
.hero__title-line {
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: rgba(255,255,255,.6);
  letter-spacing: .25em;
}
.hero__title-main {
  font-size: clamp(5.5rem, 17vw, 13rem);
  background: linear-gradient(135deg, var(--white) 30%, var(--orange-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 40px rgba(255,106,0,.3));
}
.hero__title-sub {
  font-size: clamp(2.2rem, 6.5vw, 4.5rem);
  color: var(--blue-lt);
  letter-spacing: .18em;
}

.hero__desc {
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  color: rgba(255,255,255,.7);
  max-width: 640px;
  line-height: 1.7;
  animation: fadeIn 1s .4s ease both;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 20px 44px;
  backdrop-filter: blur(12px);
  animation: scaleIn .8s .5s ease both;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.hero__stat strong {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--orange);
  line-height: 1;
}
.hero__stat span { font-size: .85rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.hero__stat-divider {
  width: 1px; height: 48px;
  background: rgba(255,255,255,.12);
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp .8s .6s ease both;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  letter-spacing: .15em;
  color: var(--muted);
  text-transform: uppercase;
  animation: fadeIn 1s 1.2s ease both;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: float 2s ease-in-out infinite;
}

/* ============================================================
   COUNTDOWN
   ============================================================ */
.countdown {
  background: linear-gradient(135deg, var(--orange), #e85500);
  padding: 32px 0;
  text-align: center;
}
.countdown__label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: 12px;
}
.countdown__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 72px;
}
.countdown__num {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  line-height: 1;
  background: rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  padding: 4px 12px;
  min-width: 80px;
  text-align: center;
}
.countdown__item span:last-child {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .75;
}
.countdown__sep {
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: rgba(255,255,255,.5);
  line-height: 1;
  margin-top: -8px;
}

/* ── DUŻE INFO: zapisy ruszyły ── */
.reg-open {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 auto 22px;
  padding: 16px 40px;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  letter-spacing: .06em;
  color: #fff;
  background: linear-gradient(135deg, #ff6a00, #ff2d2d);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 40px rgba(255,45,45,.45);
  animation: regBlink 1s ease-in-out infinite;
  cursor: pointer;
  text-decoration: none;
}
a.reg-open:hover { filter: brightness(1.08); }
.reg-open--hero { margin: 0; }
.reg-open__dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,.8);
  animation: regDot 1.2s ease-out infinite;
}
/* Miganie całego banera */
@keyframes regBlink {
  0%, 100% { opacity: 1;   box-shadow: 0 14px 54px rgba(255,45,45,.65); }
  50%      { opacity: .28; box-shadow: 0 6px 24px rgba(255,45,45,.25); }
}
@keyframes regDot {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.8); }
  70%  { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* ── Licznik odliczający do nowego obozu ── */
.camp-countdown {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 40px 56px;
  background: rgba(0,0,0,.2);
  border: 2px solid rgba(30,144,255,.4);
  border-radius: var(--radius-lg);
}
.camp-countdown__label {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
/* Powiększone kafelki odliczania */
.camp-countdown .camp-live__units { gap: 18px; }
.camp-countdown .camp-live__unit {
  min-width: 118px;
  padding: 22px 16px;
  gap: 6px;
}
.camp-countdown .camp-live__unit b { font-size: clamp(3.4rem, 8vw, 5rem); }
.camp-countdown .camp-live__unit span { font-size: .9rem; }
@media (max-width: 600px) {
  .camp-countdown { padding: 24px 16px; gap: 16px; }
  .camp-countdown .camp-live__unit { min-width: 74px; padding: 14px 8px; }
  .camp-countdown .camp-live__units { gap: 10px; }
}

/* ── Licznik "Obóz trwa" — dzień X z 10 + odliczanie ── */
.camp-live {
  display: inline-flex;
  align-items: stretch;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 28px 40px;
  background: rgba(0,0,0,.18);
  border: 1.5px solid rgba(255,106,0,.35);
  border-radius: var(--radius-lg);
}
.camp-live__day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  background: linear-gradient(135deg, var(--orange), #e85500);
  border-radius: var(--radius-md);
  color: #fff;
  min-width: 140px;
  box-shadow: 0 8px 30px rgba(255,106,0,.35);
}
.camp-live__day-num {
  font-family: var(--font-head);
  font-size: clamp(4rem, 11vw, 6rem);
  line-height: 1;
}
.camp-live__day-label {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .9;
  line-height: 1.2;
  margin-top: 6px;
}
.camp-live__timer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.camp-live__timer-label {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.camp-live__units {
  display: flex;
  gap: 14px;
  justify-content: center;
}
.camp-live__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 88px;
  padding: 16px 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
}
.camp-live__unit b {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  line-height: 1;
  color: var(--white);
  font-weight: 400;
}
.camp-live__unit span {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 600px) {
  .camp-live { gap: 16px; padding: 18px; }
  .camp-live__day { min-width: 110px; padding: 10px 22px; }
  .camp-live__unit { min-width: 64px; padding: 10px 6px; }
  .camp-live__units { gap: 8px; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--navy-lt); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.about__visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 420px;
}
.about__image-wrap {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255,106,0,.15), rgba(30,144,255,.1));
  border: 1px solid rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.about__image-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,106,0,.2) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(30,144,255,.15) 0%, transparent 60%);
}
.about__kanji-deco {
  font-family: var(--font-jp);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  color: rgba(255,255,255,.06);
  z-index: 1;
  user-select: none;
}
.about__badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px; height: 110px;
  animation: rotateSlow 12s linear infinite;
}
.about__circle-text text {
  font-size: 7px;
  font-weight: 700;
  fill: var(--orange);
  letter-spacing: 2px;
}
.about__lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  color: rgba(255,255,255,.85);
  line-height: 1.75;
  margin-bottom: 32px;
}
.about__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__feature {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: rgba(255,255,255,.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
}
.about__feature:hover {
  background: rgba(255,106,0,.06);
  border-color: rgba(255,106,0,.2);
  transform: translateX(4px);
}
.about__feature-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(255,106,0,.12);
  border: 1px solid rgba(255,106,0,.2);
  border-radius: 12px;
}
.about__feature-icon svg { width: 22px; height: 22px; color: var(--orange); }
.about__feature strong { display: block; font-size: .95rem; margin-bottom: 4px; }
.about__feature p { font-size: .85rem; color: var(--muted); margin: 0; }

/* ============================================================
   PROGRAM — BENTO GRID
   ============================================================ */
.program { background: var(--navy); }
.program__bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.program__card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.program__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,106,0,.04), transparent);
  opacity: 0;
  transition: var(--transition);
}
.program__card:hover { transform: translateY(-4px); border-color: rgba(255,106,0,.25); box-shadow: var(--shadow-md); }
.program__card:hover::before { opacity: 1; }
.program__card--wide { grid-column: span 2; }
.program__card--tall { grid-row: span 2; }
.program__card--highlight {
  background: linear-gradient(135deg, rgba(255,106,0,.2), rgba(255,140,53,.1));
  border-color: rgba(255,106,0,.3);
}
.program__card-icon { margin-bottom: 16px; display: flex; }
.program__card-icon svg { width: 34px; height: 34px; color: var(--orange); }
.program__card h3 { font-family: var(--font-display); font-size: 1.55rem; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; margin-bottom: 8px; }
.program__card p { font-size: .92rem; font-weight: 500; color: var(--muted); line-height: 1.65; }
.program__tag {
  display: inline-block;
  margin-top: 16px;
  background: rgba(30,144,255,.15);
  color: var(--blue-lt);
  border: 1px solid rgba(30,144,255,.2);
  border-radius: var(--radius-xl);
  padding: 3px 12px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
}
.program__tag--gold {
  background: rgba(255,106,0,.15);
  color: var(--orange-lt);
  border-color: rgba(255,106,0,.25);
}
.program__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.program__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .87rem;
  color: var(--muted);
  padding: 8px 12px;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.program__list li svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--orange); opacity: .75; }
.program__list li:hover { background: rgba(255,106,0,.08); color: var(--white); }
.program__list li:hover svg { opacity: 1; }
.program__list--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ============================================================
   SCHEDULE — TIMELINE
   ============================================================ */
.schedule {
  background: var(--navy-lt);
  position: relative;
}
/* ── Nowy timeline planu dnia ── */
.sched-tl {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 78px;
}
.sched-tl::before {
  content: '';
  position: absolute;
  left: 31px; top: 12px; bottom: 12px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(to bottom, #f5b301, var(--orange), var(--blue), #7c5cff);
  opacity: .55;
}
.sched-tl__item {
  position: relative;
  margin-bottom: 16px;
}
.sched-tl__item:last-child { margin-bottom: 0; }
.sched-tl__node {
  position: absolute;
  left: -78px; top: 4px;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  border: 2px solid rgba(255,255,255,.14);
  color: var(--muted);
  z-index: 1;
  transition: var(--transition);
}
.sched-tl__node svg { width: 26px; height: 26px; }
.sched-tl__card {
  padding: 16px 22px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-left: 3px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.sched-tl__item:hover .sched-tl__card { background: rgba(255,255,255,.06); transform: translateX(4px); }
.sched-tl__item:hover .sched-tl__node { transform: scale(1.08); }
.sched-tl__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.sched-tl__time {
  font-family: var(--font-head);
  font-size: 1.15rem;
  letter-spacing: .04em;
  color: var(--white);
  line-height: 1;
}
.sched-tl__cat {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 3px 10px;
}
.sched-tl__cat--hot { background: rgba(124,92,255,.22); color: #b3a3ff; }
.sched-tl__card h4 {
  font-family: var(--font-display);
  font-size: 1.12rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .02em;
  margin-bottom: 3px; color: var(--white);
}
.sched-tl__card p { font-size: .86rem; font-weight: 500; color: var(--muted); margin: 0; line-height: 1.5; }

/* Kolory kategorii — węzeł ikony + akcent karty */
.sched-tl__item--start   .sched-tl__node { border-color: #f5b301; color: #f5b301; box-shadow: 0 0 16px rgba(245,179,1,.3); }
.sched-tl__item--start   .sched-tl__card { border-left-color: #f5b301; }
.sched-tl__item--meal    .sched-tl__node { border-color: var(--blue-lt); color: var(--blue-lt); box-shadow: 0 0 16px rgba(30,144,255,.28); }
.sched-tl__item--meal    .sched-tl__card { border-left-color: var(--blue-lt); }
.sched-tl__item--training .sched-tl__node { border-color: var(--orange); color: var(--orange); background: rgba(255,106,0,.12); box-shadow: 0 0 18px rgba(255,106,0,.4); }
.sched-tl__item--training .sched-tl__card { border-left-color: var(--orange); background: rgba(255,106,0,.05); }
.sched-tl__item--free    .sched-tl__node { border-color: #2dd4bf; color: #2dd4bf; box-shadow: 0 0 16px rgba(45,212,191,.28); }
.sched-tl__item--free    .sched-tl__card { border-left-color: #2dd4bf; }
.sched-tl__item--night   .sched-tl__node { border-color: #7c5cff; color: #b3a3ff; box-shadow: 0 0 16px rgba(124,92,255,.3); }
.sched-tl__item--night   .sched-tl__card { border-left-color: #7c5cff; }
.sched-tl__item--rest    .sched-tl__node { border-color: #64748b; color: #94a3b8; }
.sched-tl__item--rest    .sched-tl__card { border-left-color: #64748b; }

/* ============================================================
   INSTRUCTORS
   ============================================================ */
.instructors { background: var(--navy); }
.instructors__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.instructor__card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.instructor__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(255,106,0,.2); }
.instructor__card--guest { border-color: rgba(255,106,0,.3); }
.instructor__guest-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--orange);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: var(--radius-xl);
}
.instructor__avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  animation: pulse-ring 3s infinite;
}
.instructor__avatar--1 { background: linear-gradient(135deg, var(--orange), #c44400); }
.instructor__avatar--2 { background: linear-gradient(135deg, var(--blue), #0060cc); }
.instructor__avatar--3 { background: linear-gradient(135deg, #2dd4bf, #0891b2); }
.instructor__avatar--4 { background: linear-gradient(135deg, #a855f7, #7c3aed); }
.instructor__kanji {
  font-family: var(--font-jp);
  font-size: 2rem;
  color: rgba(255,255,255,.9);
}
.instructor__info h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; margin-bottom: 4px; }
.instructor__rank { font-size: .82rem; color: var(--orange); font-weight: 700; letter-spacing: .04em; margin-bottom: 10px; }
.instructor__info p { font-size: .9rem; font-weight: 500; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.instructor__tags { display: flex; gap: 6px; flex-wrap: wrap; }
.instructor__tags span {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 2px 10px;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--navy-lt); }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: start;
}
.pricing__card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
}
.pricing__card:hover { transform: translateY(-4px); }
.pricing__card--featured {
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
  transform: scale(1.03);
}
.pricing__card--featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing__popular {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 3px 16px;
  border-radius: var(--radius-xl);
  white-space: nowrap;
}
.pricing__header { text-align: center; margin-bottom: 24px; }
.pricing__header h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.pricing__price {
  font-family: var(--font-head);
  font-size: 3.5rem;
  color: var(--orange);
  line-height: 1.1;
  margin: 8px 0;
}
.pricing__price sup { font-size: 1.2rem; vertical-align: super; font-family: var(--font-body); font-weight: 700; }
.pricing__header p { font-size: .82rem; color: var(--muted); }
.pricing__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.pricing__features li { font-size: .88rem; color: rgba(255,255,255,.8); }
.pricing__no { color: var(--muted); text-decoration: line-through; }
.pricing__note {
  text-align: center;
  margin-top: 24px;
  font-size: .82rem;
  color: var(--muted);
}

/* ============================================================
   GALLERY
   ============================================================ */
/* ============================================================
   POGORZELICA 2027 — nowy obóz
   ============================================================ */
.pogorzelica { background: var(--navy); }

.pog-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.pog-fact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
}
.pog-fact svg { width: 26px; height: 26px; color: var(--orange); margin-bottom: 6px; }
.pog-fact__label { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.pog-fact strong { font-size: 1.05rem; color: var(--white); line-height: 1.2; }
.pog-fact__sub { font-size: .8rem; color: var(--muted); }

.pog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.pog-card {
  padding: 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
}
.pog-card h3 {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.15rem; margin-bottom: 14px; color: var(--white);
}
.pog-card__ico { font-size: 1.3rem; }
.pog-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.pog-card li {
  position: relative; padding-left: 22px;
  font-size: .88rem; color: rgba(255,255,255,.8); line-height: 1.45;
}
.pog-card li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
}

.pog-cta {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,106,0,.25);
}
.pog-cta__main {
  padding: 30px;
  background: linear-gradient(135deg, rgba(255,106,0,.14), rgba(30,144,255,.08));
}
.pog-cta__main h3 { font-size: 1.4rem; margin-bottom: 12px; color: var(--white); }
.pog-cta__main p { font-size: .9rem; color: rgba(255,255,255,.82); line-height: 1.55; margin-bottom: 14px; }
.pog-cta__phone { display: flex; align-items: center; gap: 8px; font-size: 1rem !important; color: var(--white) !important; }
.pog-cta__phone svg { color: var(--orange); flex-shrink: 0; }
.pog-cta__phone a { color: var(--orange); font-weight: 700; text-decoration: none; font-size: 1.1rem; }
.pog-cta__phone a:hover { text-decoration: underline; }

.pog-cta__bank {
  padding: 30px;
  background: rgba(0,0,0,.25);
}
.pog-cta__bank-label { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 10px; }
.pog-cta__bank p { font-size: .85rem; color: rgba(255,255,255,.8); line-height: 1.5; margin-bottom: 10px; }
.pog-cta__acc { font-family: var(--font-head); font-size: 1.15rem !important; letter-spacing: .04em; color: var(--orange) !important; }
.pog-cta__title { font-size: .78rem !important; color: var(--muted) !important; }
.pog-cta__title em { color: rgba(255,255,255,.7); font-style: normal; }

@media (max-width: 900px) {
  .pog-facts { grid-template-columns: repeat(2, 1fr); }
  .pog-grid  { grid-template-columns: 1fr; }
  .pog-cta   { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .pog-facts { grid-template-columns: 1fr; }
}

.gallery { background: var(--navy-lt); }

/* ── Day tabs ── */
.gallery-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 28px;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
}
.gallery-tabs::-webkit-scrollbar { height: 3px; }
.gallery-tabs::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }
.gallery-tab {
  flex-shrink: 0;
  padding: 10px 18px;
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.65);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.gallery-tab:hover { background: rgba(255,255,255,.1); color: var(--white); }
.gallery-tab.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,106,0,.35);
}
.gallery-tab__date { font-size: .7rem; font-weight: 500; opacity: .75; }
.gallery-tab__count { font-size: .68rem; background: rgba(255,255,255,.2); border-radius: 20px; padding: 1px 7px; margin-top: 3px; }
.gallery-tab.active .gallery-tab__count { background: rgba(255,255,255,.25); }
.gallery-tabs__skeleton { color: var(--muted); font-size: .85rem; padding: 10px; }

/* ── Photo wall — Masonry bento ── */
.gallery-wall { min-height: 200px; }
.gallery-wall__loading {
  display: flex; justify-content: center; align-items: center;
  padding: 60px 0;
}
.gallery-wall__empty {
  text-align: center; padding: 60px 20px;
  color: var(--muted);
}
.gallery-wall__empty svg { opacity: .25; margin-bottom: 12px; }
.gallery-wall__empty h4 { font-size: 1rem; margin-bottom: 4px; }
.gallery-wall__empty p  { font-size: .85rem; }

/* ── Ekran odblokowania galerii ── */
.gallery-unlock {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  animation: fadeIn .4s ease;
}
.gallery-unlock__icon {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,106,0,.12);
  color: var(--orange);
}
.gallery-unlock h4 { font-size: 1.25rem; margin-bottom: 8px; color: var(--white); }
.gallery-unlock p  { font-size: .88rem; color: var(--muted); margin-bottom: 22px; line-height: 1.5; }
.gallery-unlock__form {
  display: flex;
  gap: 8px;
  max-width: 320px;
  margin: 0 auto;
}
.gallery-unlock__form input {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(255,255,255,.15);
  background: rgba(0,0,0,.25);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  transition: var(--transition);
}
.gallery-unlock__form input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,106,0,.18);
}
.gallery-unlock__form input::placeholder { color: rgba(255,255,255,.4); }
.gallery-unlock__form .btn { flex-shrink: 0; }
.gallery-unlock__err {
  margin-top: 14px !important;
  color: #ff7676 !important;
  font-weight: 600;
}
@media (max-width: 480px) {
  .gallery-unlock__form { flex-direction: column; }
  .gallery-unlock__form .btn { width: 100%; }
}

/* Sekcje galerii — Filmy / Zdjęcia */
.gallery-section { margin-bottom: 32px; }
.gallery-section:last-child { margin-bottom: 0; }
.gallery-section__head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  letter-spacing: .04em;
  color: var(--white);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.gallery-section__count {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  color: var(--orange);
  background: rgba(255,106,0,.14);
  border-radius: 20px;
  padding: 2px 10px;
}

/* Bento grid */
.gallery-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 10px;
  animation: fadeIn .4s ease;
}
.gallery-bento__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  cursor: pointer;
  transition: var(--transition);
}
.gallery-bento__item:hover { transform: scale(1.02); border-color: rgba(255,106,0,.3); z-index: 1; box-shadow: var(--shadow-md); }
.gallery-bento__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.gallery-bento__item:hover img { transform: scale(1.08); }
/* Featured sizes */
.gallery-bento__item--feat { grid-column: span 2; grid-row: span 2; }
.gallery-bento__item--wide { grid-column: span 2; }
.gallery-bento__item--tall { grid-row: span 2; }
/* Caption overlay */
.gallery-bento__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  color: #fff; font-size: .78rem; padding: 20px 12px 10px;
  opacity: 0; transition: var(--transition);
}
.gallery-bento__item:hover .gallery-bento__caption { opacity: 1; }

/* Kafelek wideo */
.gallery-bento__item--video video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  background: #000;
}
.gallery-bento__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 58px; height: 58px;
  display: grid; place-items: center;
  background: rgba(255,106,0,.92);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(0,0,0,.5);
  pointer-events: none;
  transition: var(--transition);
}
.gallery-bento__item--video:hover .gallery-bento__play {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--orange);
}
.gallery-bento__play svg { margin-left: 3px; }

/* Odtwarzacz w lightboxie */
.gallery-lb__video {
  max-width: 90vw; max-height: 82vh;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}

/* ── Lightbox ── */
.gallery-lb { position: fixed; inset: 0; z-index: 9000; display: flex; align-items: center; justify-content: center; }
.gallery-lb[hidden] { display: none; }
.gallery-lb__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.92); backdrop-filter: blur(8px); }
.gallery-lb__img-wrap { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; max-width: 90vw; }
.gallery-lb__img { max-width: 90vw; max-height: 82vh; object-fit: contain; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.gallery-lb__caption { margin-top: 12px; font-size: .85rem; color: rgba(255,255,255,.7); text-align: center; }
.gallery-lb__close {
  position: fixed; top: 20px; right: 20px; z-index: 2;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  color: #fff; border-radius: 50%; width: 40px; height: 40px;
  display: grid; place-items: center; cursor: pointer; transition: var(--transition);
}
.gallery-lb__close:hover { background: var(--orange); border-color: var(--orange); }
.gallery-lb__nav {
  position: fixed; top: 50%; transform: translateY(-50%); z-index: 2;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  color: #fff; border-radius: 50%; width: 48px; height: 48px;
  display: grid; place-items: center; cursor: pointer; transition: var(--transition);
}
.gallery-lb__nav:hover { background: var(--orange); border-color: var(--orange); }
.gallery-lb__prev { left: 16px; }
.gallery-lb__next { right: 16px; }

@media (max-width: 768px) {
  .gallery-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-bento__item--feat { grid-column: span 2; }
  .gallery-bento__item--wide { grid-column: span 2; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--navy); }
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 64px;
  align-items: start;
}
.faq__list { display: flex; flex-direction: column; gap: 8px; }
.faq__item {
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.faq__item.open { border-color: rgba(255,106,0,.2); }
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}
.faq__question:hover { color: var(--orange); }
.faq__icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--muted);
}
.faq__item.open .faq__icon { transform: rotate(180deg); color: var(--orange); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq__answer p {
  padding: 0 20px 18px;
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq__item.open .faq__answer { max-height: 300px; }

/* ============================================================
   REGISTER
   ============================================================ */
.register {
  background: var(--navy-lt);
  position: relative;
  overflow: hidden;
}
.register::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,0,.08) 0%, transparent 70%);
  pointer-events: none;
}
.register__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.register__content .section__title { margin-bottom: 28px; }
.register__info { display: flex; flex-direction: column; gap: 16px; }
.register__info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.06);
}
.register__info-item svg { width: 22px; height: 22px; color: var(--orange); flex-shrink: 0; }
.register__info-item strong { display: block; font-size: .82rem; color: var(--muted); font-weight: 600; }
.register__info-item span { font-size: .92rem; font-weight: 600; }

/* form */
.register__form {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 40px);
  backdrop-filter: blur(12px);
}
.register__form h3 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 24px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form__group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form__row .form__group { margin-bottom: 0; }
.form__group label { font-size: .8rem; font-weight: 700; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.form__group input,
.form__group select,
.form__group textarea {
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .92rem;
  outline: none;
  transition: var(--transition);
  width: 100%;
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: rgba(255,255,255,.25); }
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--orange);
  background: rgba(255,106,0,.06);
  box-shadow: 0 0 0 3px rgba(255,106,0,.15);
}
.form__group select option { background: var(--navy-lt); }
.form__group textarea { resize: vertical; min-height: 80px; }

/* --- Validation states --- */
.form__group--error input,
.form__group--error select,
.form__group--error textarea {
  border-color: #ef4444 !important;
  background: rgba(239,68,68,.06) !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,.15) !important;
}
.form__group--valid input,
.form__group--valid select,
.form__group--valid textarea {
  border-color: #22c55e !important;
  background: rgba(34,197,94,.05) !important;
  box-shadow: 0 0 0 3px rgba(34,197,94,.1) !important;
}
.form__error-msg {
  display: none;
  align-items: center;
  gap: 5px;
  font-size: .76rem;
  font-weight: 600;
  color: #f87171;
  margin-top: 5px;
}
.form__group--error .form__error-msg { display: flex; }
.form__valid-icon {
  display: none;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #22c55e;
  pointer-events: none;
}
.form__group--valid .form__valid-icon { display: block; }
.form__group { position: relative; }
.form__group input, .form__group select { padding-right: 40px; }
.form__group textarea { padding-right: 16px; }

/* Checkbox error */
.form__checkbox--error span { color: #f87171; }
.form__checkbox--error input[type="checkbox"] { outline: 2px solid #ef4444; outline-offset: 2px; border-radius: 2px; }
.form__checkbox-error-msg {
  display: none;
  font-size: .76rem;
  font-weight: 600;
  color: #f87171;
  margin-top: -14px;
  margin-bottom: 10px;
}
.form__checkbox--error + .form__checkbox-error-msg { display: block; }

.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  cursor: pointer;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
}
.form__checkbox input[type="checkbox"] { width: 16px; height: 16px; margin-top: 1px; flex-shrink: 0; accent-color: var(--orange); }
.form__success {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: var(--radius-md);
  font-size: .88rem;
  color: #4ade80;
  line-height: 1.6;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--navy-lt); }
.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.contact__card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
  text-align: center;
  transition: var(--transition);
}
.contact__card:hover { transform: translateY(-4px); border-color: rgba(255,106,0,.2); }
.contact__card svg { width: 28px; height: 28px; color: var(--orange); margin-bottom: 12px; }
.contact__card h4 { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.contact__card a, .contact__card span { font-size: .92rem; color: var(--white); text-decoration: none; line-height: 1.6; }
.contact__card a:hover { color: var(--orange); }
.contact__social { display: flex; gap: 10px; justify-content: center; margin-top: 4px; }
.contact__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: grid;
  place-items: center;
  font-size: .75rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}
.contact__social a:hover { background: var(--orange); border-color: var(--orange); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #060f1c; border-top: 1px solid rgba(255,255,255,.06); }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-top: 60px;
  padding-bottom: 48px;
}
.footer__logo { width: 60px; margin-bottom: 16px; }
.footer__brand p { font-size: .85rem; color: var(--muted); line-height: 1.7; }
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links h5 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.footer__links a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: var(--transition);
}
.footer__links a:hover { color: var(--orange); }
.footer__newsletter h5 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.footer__newsletter p { font-size: .82rem; color: var(--muted); margin-bottom: 14px; line-height: 1.6; }
.footer__form { display: flex; gap: 8px; }
.footer__form input {
  flex: 1;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .85rem;
  outline: none;
  transition: var(--transition);
}
.footer__form input:focus { border-color: var(--orange); }
.footer__form input::placeholder { color: rgba(255,255,255,.25); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom span { font-size: .8rem; color: var(--muted); }
.footer__kanji { font-family: var(--font-jp); font-size: 1.4rem; color: var(--orange); opacity: .5; }
.footer__credit { font-size: .8rem; color: var(--muted); }
.footer__credit a { color: var(--orange); text-decoration: none; font-weight: 600; transition: var(--transition); }
.footer__credit a:hover { color: var(--orange-lt); text-decoration: underline; }
.footer__made-by { display: flex; align-items: center; gap: 5px; font-size: .75rem; color: var(--muted); margin-top: 12px; }
.footer__made-by svg { flex-shrink: 0; opacity: .6; }
.footer__made-by a { color: var(--orange); text-decoration: none; font-weight: 600; transition: var(--transition); }
.footer__made-by a:hover { color: var(--orange-lt); text-decoration: underline; }

/* ============================================================
   STICKY COUNTDOWN
   ============================================================ */
.sticky-countdown {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 990;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.sticky-countdown.visible {
  transform: translateY(0);
  pointer-events: all;
}
.sticky-countdown__inner {
  max-width: var(--container);
  margin: 0 auto;
  background: rgba(11,26,46,.96);
  backdrop-filter: blur(20px);
  border-top: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 36px);
  padding: 10px clamp(16px,4vw,48px);
}
.sticky-countdown__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.sticky-countdown__label svg { color: var(--orange); flex-shrink: 0; }
.sticky-countdown__units {
  display: flex;
  align-items: center;
  gap: 6px;
}
.sticky-countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  min-width: 46px;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 4px 8px;
}
.sticky-countdown__unit span {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--orange);
  line-height: 1;
}
.sticky-countdown__unit small {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.sticky-countdown__sep {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: rgba(255,255,255,.25);
  margin-bottom: 6px;
}
.sticky-countdown__cta {
  background: var(--orange);
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255,106,0,.35);
}
.sticky-countdown__cta:hover {
  background: var(--orange-lt);
  box-shadow: 0 6px 28px rgba(255,106,0,.55);
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .sticky-countdown__label { display: none; }
  .sticky-countdown__unit { min-width: 38px; }
  .sticky-countdown__unit span { font-size: 1.1rem; }
}

/* ============================================================
   SCROLL-TO-TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-orange);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255,106,0,.5); }
.scroll-top svg { width: 22px; height: 22px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__visual { max-width: 300px; }
  .register__inner { grid-template-columns: 1fr; gap: 48px; }
  .faq__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .program__bento { grid-template-columns: 1fr 1fr; }
  .program__card--wide { grid-column: span 2; }
  .program__card--tall { grid-row: span 1; }
}
@media (max-width: 768px) {
  .nav__links { display: none; flex-direction: column; position: fixed; top: 0; right: 0; width: 280px; height: 100svh; background: rgba(11,26,46,.97); backdrop-filter: blur(20px); padding: 80px 32px 32px; gap: 8px; z-index: 999; transform: translateX(100%); transition: transform var(--transition); }
  .nav__links.open { display: flex; transform: translateX(0); }
  .nav__links a { font-size: 1.1rem; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav__burger { display: flex; z-index: 1001; }
  .nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav__burger.open span:nth-child(2) { opacity: 0; }
  .nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero__stats { flex-direction: column; gap: 12px; }
  .hero__stat-divider { width: 40px; height: 1px; }
  .hero__actions { flex-direction: column; align-items: center; }

  .program__bento { grid-template-columns: 1fr; }
  .program__card--wide,
  .program__card--tall { grid-column: span 1; grid-row: span 1; }

  .sched-tl { padding-left: 62px; }
  .sched-tl::before { left: 23px; }
  .sched-tl__node { left: -62px; width: 46px; height: 46px; }
  .sched-tl__node svg { width: 22px; height: 22px; }
  .sched-tl__card { padding: 13px 16px; }
  .sched-tl__card h4 { font-size: 1rem; }

  .gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery__item--1,
  .gallery__item--4 { grid-column: span 1; }

  .footer__inner { grid-template-columns: 1fr; gap: 24px; }
  .form__row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .countdown__grid { gap: 6px; }
  .countdown__num { min-width: 60px; padding: 4px 8px; }
}

/* ============================================================
   COOKIE BANNER 2026 — granularna zgoda
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1100;
  background: rgba(9,21,40,.98);
  border-top: 2px solid rgba(255,106,0,.45);
  backdrop-filter: blur(24px);
  transform: translateY(100%);
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.show { transform: translateY(0); }

/* Simple row */
.cookie-banner__simple {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px clamp(16px,4vw,48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
  flex: 1;
  min-width: 220px;
}
.cookie-banner__policy-link {
  background: none; border: none;
  color: var(--orange); font-weight: 700;
  cursor: pointer; text-decoration: underline;
  padding: 0; font-size: inherit; font-family: inherit;
}
.cookie-banner__policy-link:hover { color: var(--orange-lt); }
.cookie-banner__actions { display: flex; gap: 8px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-banner__actions--settings { justify-content: flex-end; margin-top: 12px; }

/* Settings panel */
.cookie-banner__settings {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px clamp(16px,4vw,48px) 18px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.cookie-banner__settings[hidden] { display: none; }
.cookie-settings__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--white);
  margin-bottom: 12px;
}

/* Category rows */
.cookie-categories { display: flex; flex-direction: column; gap: 8px; }
.cookie-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}
.cookie-cat__info { flex: 1; }
.cookie-cat__info strong { display: block; font-size: .88rem; margin-bottom: 2px; }
.cookie-cat__info span  { font-size: .78rem; color: var(--muted); line-height: 1.5; }

/* Toggle switch */
.cookie-toggle {
  flex-shrink: 0;
  position: relative;
  width: 44px; height: 24px;
  cursor: pointer;
  display: flex; align-items: center;
}
.cookie-toggle__input {
  opacity: 0; width: 0; height: 0; position: absolute;
}
.cookie-toggle__slider {
  position: absolute; inset: 0;
  background: rgba(255,255,255,.15);
  border-radius: 24px;
  transition: var(--transition);
}
.cookie-toggle__slider::before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 18px; height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}
.cookie-toggle__input:checked + .cookie-toggle__slider { background: var(--orange); }
.cookie-toggle__input:checked + .cookie-toggle__slider::before { transform: translateX(20px); }
.cookie-toggle__input:focus-visible + .cookie-toggle__slider { outline: 2px solid var(--orange); outline-offset: 2px; }

/* Locked toggle */
.cookie-toggle--locked {
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: 24px;
  padding: 3px 10px;
  cursor: default;
  width: auto;
}
.cookie-toggle__on { font-size: .72rem; font-weight: 700; color: #4ade80; letter-spacing: .06em; }

/* ============================================================
   PRIVACY POLICY MODAL
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; }
.modal[hidden] { display: none; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(6px);
}
.modal__box {
  position: relative;
  z-index: 1;
  background: var(--navy-lt);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  width: min(720px, calc(100vw - 32px));
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
.modal__header h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--white);
}
.modal__close {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--white);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  cursor: pointer;
  transition: var(--transition);
}
.modal__close:hover { background: rgba(255,106,0,.2); border-color: var(--orange); color: var(--orange); }
.modal__body {
  overflow-y: auto;
  padding: 24px 32px;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
}
.modal__body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--orange);
  margin: 24px 0 8px;
}
.modal__body h3:first-child { margin-top: 0; }
.modal__body p, .modal__body li {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
}
.modal__body ul { padding-left: 20px; margin: 8px 0; }
.modal__body a { color: var(--orange); }
.modal__body a:hover { color: var(--orange-lt); }
.modal__updated { font-size: .78rem; color: var(--muted); margin-bottom: 4px; }
.modal__badge-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.modal__badge {
  background: rgba(255,106,0,.12);
  border: 1px solid rgba(255,106,0,.25);
  color: var(--orange-lt);
  border-radius: var(--radius-xl);
  padding: 3px 10px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.modal__table {
  width: 100%; border-collapse: collapse;
  font-size: .82rem; margin: 10px 0;
  color: rgba(255,255,255,.7);
}
.modal__table th {
  background: rgba(255,106,0,.1);
  color: var(--orange);
  padding: 8px 12px;
  text-align: left;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.modal__table td { padding: 8px 12px; border-bottom: 1px solid rgba(255,255,255,.06); }
.modal__footer {
  padding: 16px 32px 24px;
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .cookie-banner__content { flex-direction: column; gap: 16px; }
  .modal__header, .modal__body, .modal__footer { padding-left: 20px; padding-right: 20px; }
}
