/* ============================================================
   Wielton Piknik Rodzinny
   Landing + Coming Soon — wersja light (designerska)
   ============================================================ */

:root {
  /* Paleta Wielton — brand żółty */
  --lime:        #fdc318;
  --lime-bright: #ffd54d;
  --lime-dark:   #dba408;
  --lime-deep:   #a37100;
  --sun:         #ffcc1e;
  --coral:       #ff5a3c;
  --sky:         #6fb8ff;

  --ink:      #0a0a0c;
  --graphite: #1a1a1d;
  --steel:    #6b6b73;
  --silver:   #b0b0b6;
  --smoke:    #f4f4f6;
  --paper:    #fafafa;
  --white:    #ffffff;

  --border:        rgba(10, 10, 12, 0.08);
  --border-strong: rgba(10, 10, 12, 0.14);
  --shadow-sm: 0 1px 2px rgba(10, 10, 12, 0.04), 0 2px 6px rgba(10, 10, 12, 0.04);
  --shadow-md: 0 6px 24px -8px rgba(10, 10, 12, 0.12), 0 2px 8px rgba(10, 10, 12, 0.05);
  --shadow-lg: 0 20px 50px -20px rgba(10, 10, 12, 0.18), 0 8px 20px -8px rgba(10, 10, 12, 0.08);
  --shadow-lime: 0 12px 32px -10px rgba(253, 195, 24, 0.45);

  --nav-h: 100px;
  --bar-h: 44px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + var(--bar-h) + 16px);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

/* Display + countdown — Exo 2 (geometryczny, tech feel) */
.display-xxl,
.display-xl,
.display-lg,
.display-md,
.eyebrow,
.cd-num,
.cd-bar-cell strong,
.cd-bar-label,
.cd-lbl,
.countdown-label,
.cs-eyebrow,
.cs-info-item .lbl,
.hero-meta-item .lbl,
.field label,
.marquee-track,
.nav-logo-mark {
  font-family: "Exo 2", "Montserrat", sans-serif;
  font-optical-sizing: auto;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* ===== TŁO Z DELIKATNYMI ORBS ===== */
.bg-fx {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bg-fx::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 700px at 10% 5%, rgba(253, 195, 24, 0.18), transparent 60%),
    radial-gradient(750px 600px at 90% 90%, rgba(255, 204, 30, 0.14), transparent 60%),
    radial-gradient(500px 420px at 55% 50%, rgba(255, 213, 77, 0.10), transparent 60%);
  animation: orbDrift 22s ease-in-out infinite alternate;
}
.bg-fx::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.035;
  mix-blend-mode: multiply;
}
@keyframes orbDrift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-3%, 2%) scale(1.08); }
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

main { position: relative; z-index: 1; }

/* ===== TYPOGRAFIA ===== */
.display-xxl {
  font-weight: 900;
  font-size: clamp(3.5rem, 12vw, 10rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.display-xl {
  font-weight: 900;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.display-lg {
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.display-md {
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime-deep);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
}

.lead {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--steel);
  max-width: 38rem;
  line-height: 1.6;
}

.gradient-text {
  background: linear-gradient(90deg, #fdc318 0%, #e6a90c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.nav.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  transition: transform 250ms var(--ease-out);
}
.nav-logo:hover { transform: scale(1.02); }
.nav-logo img {
  height: 72px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .nav-logo img { height: 52px; }
}
.nav-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
}
.nav-links a {
  position: relative;
  color: var(--steel);
  transition: color 200ms;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--lime);
  border-radius: 2px;
  transition: width 250ms var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }

.lang-switch {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  background: var(--smoke);
  border: 1px solid var(--border);
  margin-left: 0.5rem;
}
.lang-btn {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--steel);
  transition: background 200ms, color 200ms;
  font-family: "Exo 2", "Montserrat", sans-serif;
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.active {
  background: var(--ink);
  color: var(--white);
}

@media (max-width: 768px) {
  .nav-links a { display: none; }
  .nav-links .lang-switch { display: inline-flex; margin-left: 0; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out), background 200ms, border-color 200ms;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 10px 28px -10px rgba(10, 10, 12, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--graphite);
  box-shadow: 0 16px 38px -10px rgba(10, 10, 12, 0.5);
}
.btn-lime {
  background: var(--lime);
  color: var(--white);
  box-shadow: var(--shadow-lime);
}
.btn-lime:hover {
  transform: translateY(-2px);
  background: var(--lime-dark);
  box-shadow: 0 18px 42px -10px rgba(253, 195, 24, 0.6);
}
.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  background: var(--smoke);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-arrow {
  width: 16px; height: 16px;
  transition: transform 250ms var(--ease-out);
}
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ===== FLOATING DECORATIVE SHAPES (czarne kształty + żółte kule) ===== */
.deco {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.deco-shape {
  position: absolute;
  user-select: none;
  pointer-events: none;
  will-change: transform;
  filter: drop-shadow(0 8px 24px rgba(10, 10, 12, 0.08));
}
.deco-yellow-1 {
  top: 8%;
  right: -3%;
  width: 280px;
  opacity: 0.85;
  animation: float-y 11s ease-in-out infinite alternate, drift-x 17s ease-in-out infinite alternate;
}
.deco-dark-1 {
  top: 42%;
  left: -5%;
  width: 220px;
  opacity: 0.85;
  animation: float-y 13s ease-in-out infinite alternate-reverse, drift-x 19s ease-in-out infinite alternate;
}
.deco-yellow-2 {
  top: 70%;
  right: 4%;
  width: 180px;
  opacity: 0.75;
  animation: float-y 9s ease-in-out infinite alternate, spin-slow 38s linear infinite;
}
.deco-dark-2 {
  top: 22%;
  right: 12%;
  width: 120px;
  opacity: 0.55;
  animation: float-y 14s ease-in-out infinite alternate-reverse;
}
.deco-yellow-3 {
  top: 50%;
  left: -2%;
  width: 90px;
  opacity: 0.45;
  animation: float-y 8s ease-in-out infinite alternate, spin-slow 28s linear infinite reverse;
}
.deco-dots-1 {
  top: 32%;
  left: -2%;
  width: 110px;
  opacity: 0.7;
  animation: float-y 10s ease-in-out infinite alternate, spin-slow 32s linear infinite;
}
.deco-dark-3 {
  top: 85%;
  left: 45%;
  width: 80px;
  opacity: 0.4;
  animation: float-y 12s ease-in-out infinite alternate-reverse;
}

@keyframes float-y {
  from { transform: translateY(-18px); }
  to   { transform: translateY(22px); }
}
@keyframes drift-x {
  from { transform: translateX(-12px); }
  to   { transform: translateX(14px); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/* Drobne kropki nie potrzebują tak agresywnego unikania na małych ekranach */
@media (max-width: 768px) {
  .deco-yellow-1 { width: 180px; opacity: 0.7; }
  .deco-dark-1   { width: 140px; opacity: 0.7; }
  .deco-yellow-2 { width: 120px; opacity: 0.6; }
  .deco-dark-2   { display: none; }
  .deco-yellow-3 { display: none; }

  /* Na mobile: tylko 1 element dekoracyjny u góry hero (po prawej),
     bez animacji żeby nie przeszkadzał przy scrollu nad tekstami */
  .deco { position: absolute; height: 100vh; }
  .deco-dots-1 { display: none; }
  .deco-shape { animation: none !important; }
  .deco-yellow-1 { top: 6%; right: -8%; width: 140px; opacity: 0.5; }
  .deco-yellow-2 { top: 38%; right: -10%; width: 100px; opacity: 0.35; }
}

/* ===== STICKY COUNTDOWN BAR (pod nav) ===== */
.cd-bar {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  height: var(--bar-h);
  z-index: 95;
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 60%, #15803d 100%);
  border-bottom: 1px solid #14532d;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(21, 128, 61, 0.25);
}
.cd-bar-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  flex-wrap: nowrap;
}
.cd-bar-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}
.cd-bar-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fdc318;
  box-shadow: 0 0 0 0 rgba(253, 195, 24, 0.7);
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}
.cd-bar-cells {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-left: auto;
  font-variant-numeric: tabular-nums;
}
.cd-bar-cell {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
}
.cd-bar-cell strong {
  font-weight: 900;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: -0.01em;
  min-width: 1.3ch;
  text-align: right;
  display: inline-block;
}
.cd-bar-cell span {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
}
.cd-bar-sep {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  margin: 0 0.1rem;
}
.cd-bar-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  white-space: nowrap;
}
.cd-bar-dot-sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  display: inline-block;
}
@media (max-width: 860px) {
  .cd-bar-meta { display: none; }
  .cd-bar-cells { margin-left: auto; }
}
@media (max-width: 520px) {
  .cd-bar-label span:last-child { display: none; }
  .cd-bar-cell span { display: none; }
  .cd-bar-sep { color: rgba(255, 255, 255, 0.6); }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--bar-h));
  padding: calc(var(--nav-h) + var(--bar-h) + 4rem) 0 4rem;
  display: flex;
  align-items: center;
}
.hero-tight {
  min-height: auto;
  padding-bottom: 2.5rem;
}
.hero-text {
  max-width: 980px;
}
.hero-split {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr 1.05fr;
    gap: 2rem;
  }
}
.hero-art-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: -4%;
}
.hero-art-wrap::before {
  content: "";
  position: absolute;
  inset: -14% -16% -6% -16%;
  background: radial-gradient(closest-side, rgba(219, 164, 8, 0.28) 0%, transparent 72%);
  filter: blur(28px);
  z-index: 0;
}
.hero-art {
  position: relative;
  z-index: 1;
  max-width: 100%;
  width: min(640px, 100%);
  height: auto;
  animation: hero-float 6.5s ease-in-out infinite alternate;
  filter: drop-shadow(0 18px 32px rgba(10, 10, 12, 0.18));
}
@keyframes hero-float {
  from { transform: translateY(-10px) rotate(-1.5deg); }
  to   { transform: translateY(12px)  rotate(1.5deg); }
}
@media (max-width: 1023px) {
  .hero-art-wrap { order: -1; margin-bottom: 1rem; margin-right: 0; }
  .hero-art { width: min(420px, 90%); }
}
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: end;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
  }
}

.hero-eyebrow { margin-bottom: 1.5rem; }

.hero-banner {
  display: block;
  width: min(420px, 70%);
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 8px 24px rgba(245, 198, 0, 0.35));
  animation: heroBannerIn 900ms var(--ease-out) both;
}
@keyframes heroBannerIn {
  from { opacity: 0; transform: translateY(-16px) rotate(-2deg); }
  to   { opacity: 1; transform: translateY(0) rotate(0deg); }
}
@media (max-width: 1023px) {
  .hero-banner { width: min(320px, 80%); }
}

.cs-banner {
  display: block;
  width: min(460px, 80%);
  height: auto;
  margin: 0 auto 1.75rem;
  filter: drop-shadow(0 10px 30px rgba(245, 198, 0, 0.35));
  animation: heroBannerIn 900ms var(--ease-out) both;
}

.hero-title {
  margin-bottom: 1.75rem;
}
/* PL — dłuższe słowa, zmniejsz na desktop żeby grafika oddychała */
@media (min-width: 1024px) {
  html[lang="pl"] .hero-title {
    font-size: clamp(3rem, 8.5vw, 7.5rem);
  }
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: lineUp 1100ms var(--ease-out) forwards;
}
.hero-title .line:nth-child(2) span { animation-delay: 120ms; }
.hero-title .line:nth-child(3) span { animation-delay: 240ms; }
@keyframes lineUp {
  to { transform: translateY(0); }
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  margin: 2.5rem 0 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-meta-item .lbl {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.hero-meta-item .val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

/* ===== COUNTDOWN CARD ===== */
.countdown-card {
  position: relative;
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffd54d 0%, #fdc318 100%);
  border: 1px solid rgba(218, 164, 8, 0.5);
  box-shadow: 0 24px 56px -22px rgba(218, 164, 8, 0.55), 0 8px 20px -8px rgba(10, 10, 12, 0.12);
}
.countdown-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.countdown-label::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 0 rgba(10, 10, 12, 0.45);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(253, 195, 24, 0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(253, 195, 24, 0); }
  100% { box-shadow: 0 0 0 0 rgba(253, 195, 24, 0); }
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.cd-cell {
  position: relative;
  text-align: center;
  padding: 1.25rem 0.5rem 1rem;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(10, 10, 12, 0.08);
  box-shadow: 0 4px 14px -4px rgba(10, 10, 12, 0.12);
}
.cd-num {
  display: block;
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: var(--ink);
}
.cd-lbl {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 600;
}

/* Wariant big countdown na coming-soon */
.countdown-card.big {
  padding: clamp(1.5rem, 4vw, 3rem);
}
.countdown-card.big .cd-num {
  font-size: clamp(2.8rem, 10vw, 6rem);
}
.countdown-card.big .cd-cell {
  padding: 2rem 1rem 1.5rem;
  border-radius: 20px;
}

/* ===== COMING SOON LAYOUT ===== */
.cs-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 3rem) 0 3rem;
  text-align: center;
  overflow: hidden;
}
.cs-side-character {
  position: absolute;
  bottom: 1rem;
  width: 280px;
  height: auto;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 18px 24px rgba(10, 10, 12, 0.22));
}
.cs-side-left {
  left: 3%;
  animation: cs-side-float-l 5.5s ease-in-out infinite alternate;
  transform-origin: bottom center;
}
.cs-side-right {
  right: 3%;
  animation: cs-side-float-r 6.5s ease-in-out infinite alternate;
  transform-origin: bottom center;
}
@keyframes cs-side-float-l {
  from { transform: translateY(0) rotate(-2deg); }
  to   { transform: translateY(-8px) rotate(2deg); }
}
@keyframes cs-side-float-r {
  from { transform: translateY(-6px) rotate(2deg); }
  to   { transform: translateY(0) rotate(-2deg); }
}
@media (max-width: 1280px) {
  .cs-side-character { width: 220px; }
}
@media (max-width: 1024px) {
  .cs-side-character { width: 160px; opacity: 0.65; }
}
@media (max-width: 720px) {
  .cs-side-left { display: none; }
  .cs-side-right { width: 110px; right: 2%; opacity: 0.55; }
}
@media (prefers-reduced-motion: reduce) {
  .cs-side-character { animation: none; }
}
.cs-eyebrow {
  margin: 0 auto 2rem;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(253, 195, 24, 0.12);
  border: 1px solid rgba(253, 195, 24, 0.35);
  color: var(--lime-deep);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}
.cs-eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  margin-right: 0.55rem;
  box-shadow: 0 0 12px rgba(253, 195, 24, 0.55);
  animation: pulse 1.8s infinite;
}
.cs-hero-art {
  display: block;
  margin: 0.5rem auto 1.5rem;
  width: min(360px, 70%);
  height: auto;
  position: relative;
  z-index: 2;
  animation: hero-float 6.5s ease-in-out infinite alternate;
  filter: drop-shadow(0 16px 28px rgba(10, 10, 12, 0.18));
}
@media (max-width: 640px) {
  .cs-hero-art { width: min(240px, 70%); }
}
@media (prefers-reduced-motion: reduce) {
  .cs-hero-art { animation: none; }
}
.cs-title {
  max-width: 18ch;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
}
/* PL — dłuższe słowa, zmniejsz na desktop */
@media (min-width: 1024px) {
  html[lang="pl"] .cs-title {
    font-size: clamp(3rem, 8.5vw, 7.5rem);
  }
}
.cs-sub {
  max-width: 44rem;
  margin: 0 auto 3rem;
  color: var(--steel);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.6;
}
.cs-cd-wrap {
  max-width: 720px;
  margin: 0 auto 3rem;
}
.cs-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 0;
  border-top: 0;
}
.cs-info-item {
  text-align: left;
  display: inline-flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.85rem 1.4rem;
  background: var(--white);
  border: 1.5px solid rgba(218, 164, 8, 0.4);
  border-radius: 999px;
  box-shadow: 0 8px 22px -10px rgba(218, 164, 8, 0.35), 0 2px 6px rgba(10, 10, 12, 0.05);
  transition: transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out), border-color 250ms;
}
.cs-info-item:hover {
  transform: translateY(-3px);
  border-color: var(--lime-dark);
  box-shadow: 0 14px 30px -10px rgba(218, 164, 8, 0.5), 0 4px 10px rgba(10, 10, 12, 0.07);
}
.cs-info-item .lbl {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime-deep);
  font-weight: 800;
  line-height: 1;
}
.cs-info-item .val {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
  font-family: "Exo 2", "Montserrat", sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
@media (max-width: 640px) {
  .cs-info { gap: 0.75rem; }
  .cs-info-item { padding: 0.7rem 1.1rem; }
}

/* ===== SECTIONS ===== */
.section {
  padding: clamp(1.5rem, 4vw, 3rem) 0;
  position: relative;
}
.section-head {
  max-width: 720px;
  margin-bottom: 4rem;
}
.section-head .eyebrow { margin-bottom: 1.25rem; }

/* Decorative postać w sekcji (info, FAQ) */
.section-with-art { overflow: hidden; }
.section-character {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  width: 240px;
  height: auto;
  opacity: 0.95;
  filter: drop-shadow(0 12px 30px rgba(10, 10, 12, 0.10));
}
.section-character-right {
  right: -40px;
  top: 8%;
  animation: char-sway 7s ease-in-out infinite alternate;
}
.section-character-left {
  left: -40px;
  bottom: 8%;
  animation: char-sway 8.5s ease-in-out infinite alternate-reverse;
}
@keyframes char-sway {
  from { transform: translateY(-12px) rotate(-2deg); }
  to   { transform: translateY(10px)  rotate(2deg); }
}
@media (max-width: 1100px) {
  .section-character { width: 180px; opacity: 0.75; }
}
@media (max-width: 768px) {
  .section-character { display: none; }
}

/* Coming-soon — grupa postaci pod countdown */
.cs-characters {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin: -2rem auto 3rem;
  max-width: 1280px;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.cs-characters img {
  width: min(680px, 100%);
  height: auto;
  animation: hero-float 7.5s ease-in-out infinite alternate;
}

/* ===== INFO CARDS ===== */
.info-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.info-card {
  position: relative;
  padding: 2rem;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 350ms var(--ease-out), border-color 350ms, box-shadow 350ms;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.info-card:hover {
  transform: translateY(-4px);
  border-color: var(--lime);
  box-shadow: var(--shadow-md);
}
.info-card .icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(253, 195, 24, 0.15);
  color: var(--lime-deep);
  display: grid; place-items: center;
  margin-bottom: 1.25rem;
}
.info-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.info-card p {
  color: var(--steel);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ===== MAP ===== */
.map-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
  background: var(--smoke);
  box-shadow: var(--shadow-md);
}
@media (max-width: 768px) {
  .map-wrap {
    aspect-ratio: 3 / 4;
    border-radius: 18px;
  }
  /* Overlay overlay na dole mapy, kompaktowy */
  .map-overlay {
    bottom: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    max-width: none;
    padding: 0.55rem 0.85rem;
    border-radius: 12px;
  }
  .map-overlay h4 { font-size: 0.8rem; margin-bottom: 0.1rem; }
  .map-overlay p { font-size: 0.7rem; line-height: 1.3; }
  .map-overlay-link { font-size: 0.7rem; margin-top: 0.35rem; }
  /* Mniejsze markery */
  .wielton-marker-mini { transform: scale(0.78); transform-origin: center bottom; }
  .parking-marker { width: 32px; height: 32px; font-size: 12px; }
  .no-entry-marker { width: 28px; height: 28px; }
  .no-entry-bar { height: 4px; }
  /* Mniejsze przyciski sterujące */
  .leaflet-touch .leaflet-bar a {
    width: 32px !important;
    height: 32px !important;
    line-height: 32px !important;
  }
  .map-fs-btn { width: 30px; height: 30px; }
  .map-layer-btn { padding: 0.35rem 0.65rem; font-size: 0.65rem; }
  /* Mniejsza czcionka legendy */
  .map-legend { padding: 0.85rem 1rem; gap: 0.45rem 1rem; }
  .map-legend-item { font-size: 0.74rem; gap: 0.45rem; }
}
@media (max-width: 480px) {
  .map-wrap { aspect-ratio: 4 / 5; }
  .wielton-marker-mini { transform: scale(0.7); }
  .parking-marker { width: 28px; height: 28px; font-size: 11px; }
}
.map-wrap iframe,
.map-wrap #map-frame {
  width: 100%; height: 100%;
  border: 0;
}
#map-frame { background: var(--smoke); }
#map-frame .leaflet-control-attribution {
  font-size: 0.65rem;
  background: rgba(255,255,255,0.85);
}
.map-overlay {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  border: 1px solid var(--border);
  max-width: 320px;
  box-shadow: var(--shadow-md);
  z-index: 500;
}
.map-overlay h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--ink);
}
.map-overlay p {
  font-size: 0.85rem;
  color: var(--steel);
}
.map-overlay-link {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--brand-yellow, #FFD400);
  padding-bottom: 2px;
  transition: opacity 200ms var(--ease-out);
}
.map-overlay-link:hover { opacity: 0.7; }

/* Wielton brand marker — żółty pill z wielbłądem + WIELTON */
.wielton-marker {
  position: relative;
  width: 130px;
  height: 64px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  pointer-events: auto;
}
.wielton-marker-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fdc318;
  color: #0a0a0c;
  padding: 7px 14px;
  border-radius: 999px;
  border: 2.5px solid #0a0a0c;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45), 0 0 0 4px rgba(253, 195, 24, 0.25);
  font-family: "Exo 2", "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.wielton-marker-camel {
  display: inline-flex;
  width: 18px; height: 18px;
  color: #0a0a0c;
}
.wielton-marker-camel svg { width: 100%; height: 100%; display: block; object-fit: contain; }
.wielton-marker-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 2px;
  background: #fff;
  border-radius: 6px;
  border: 1.5px solid #0a0a0c;
  box-sizing: border-box;
}
.wielton-marker-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* Mini marker: tylko sygnet w żółtym kółku, bez napisu */
.wielton-marker-mini {
  width: 56px;
  height: 78px;
}
.wielton-marker-mini .wielton-marker-pill {
  width: 48px;
  height: 48px;
  padding: 8px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.wielton-marker-mini .wielton-marker-signet {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  color: #0a0a0c;
}
.wielton-marker-mini::after {
  top: 46px;
  z-index: 1;
}
.wielton-marker-mini::before {
  top: 72px;
}
.wielton-marker-text { line-height: 1; }
.wielton-marker::after {
  content: "";
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 14px solid #0a0a0c;
  filter: drop-shadow(0 4px 4px rgba(0,0,0,0.4));
}
.wielton-marker::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 6px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  filter: blur(2px);
}

/* Parking outline pulse */
.parking-outline {
  animation: parking-pulse 3s ease-in-out infinite;
}
@keyframes parking-pulse {
  0%, 100% { stroke-opacity: 1; }
  50%      { stroke-opacity: 0.55; }
}

/* Pełny ekran mapy — natywne Fullscreen API (zajmuje cały ekran fizyczny) */
#map-frame:fullscreen,
#map-frame:-webkit-full-screen {
  width: 100vw !important;
  height: 100vh !important;
  background: #000;
}
/* Fallback CSS gdy brak Fullscreen API (np. iOS Safari) */
.map-frame-fullscreen {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 9999 !important;
  border-radius: 0 !important;
  margin: 0 !important;
}
body.no-scroll { overflow: hidden; }
.map-fs-control {
  background: transparent !important;
  border: none !important;
}
.map-fs-btn {
  width: 34px;
  height: 34px;
  background: #fff;
  border: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  transition: background 200ms, color 200ms;
}
.map-fs-btn:hover { background: #fdc318; color: var(--ink); }

/* Przełącznik Mapa / Satelita */
.map-layer-switch {
  display: inline-flex;
  background: #fff;
  border-radius: 999px !important;
  overflow: hidden;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  border: none !important;
}
.map-layer-btn {
  padding: 0.4rem 0.85rem;
  font-family: "Exo 2", "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 200ms, color 200ms;
}
.map-layer-btn:hover { color: var(--ink); }
.map-layer-btn.is-active {
  background: #0a0a0c;
  color: #fff;
}

/* Popup w mapie (parking + venue) */
.map-popup {
  font-family: "Montserrat", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 180px;
}
.map-popup strong {
  font-family: "Exo 2", sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
}
.map-popup-note {
  font-size: 0.8rem;
  color: var(--steel);
  line-height: 1.4;
}
.map-popup-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
  padding: 0.5rem 0.85rem;
  background: var(--ink);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 200ms, background 200ms;
  align-self: flex-start;
}
.map-popup-cta:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

/* Legenda w trybie pełnego ekranu — overlay na dole mapy */
.map-legend-in-fs {
  position: absolute !important;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  margin: 0 auto !important;
  max-width: 1100px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.35) !important;
}
@media (max-width: 640px) {
  .map-legend-in-fs {
    bottom: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
  }
}

/* Legenda pod mapą */
.map-legend {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.map-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}
.lg-swatch {
  width: 18px; height: 18px;
  border-radius: 4px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lg-swatch-z2 {
  background: rgba(253, 195, 24, 0.25);
  border: 2px dashed #fdc318;
}
.lg-swatch-parking {
  background: #3b82f6;
  border: 2px solid #1d4ed8;
  border-radius: 50%;
}
.lg-swatch-noentry {
  background: #dc2626;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #991b1b;
  border-radius: 50%;
}
.lg-noentry-bar {
  width: 60%; height: 3px;
  background: #fff;
  border-radius: 1px;
}
.lg-line {
  width: 28px; height: 5px;
  border-radius: 2px;
  flex-shrink: 0;
}
.lg-line-red    { background: #dc2626; }
.lg-line-orange { background: repeating-linear-gradient(90deg, #f97316 0, #f97316 6px, transparent 6px, transparent 10px); height: 5px; }

@media (max-width: 640px) {
  .map-legend { gap: 0.5rem 1rem; padding: 0.85rem 1rem; }
  .map-legend-item { font-size: 0.75rem; }
}

/* Niebieski marker parkingu (P1, P2, P3, P4) */
.parking-marker {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Exo 2", "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.55), 0 0 0 2px #1d4ed8;
  transition: transform 200ms;
}
.parking-marker:hover { transform: scale(1.1); }

/* Marker zakazu wjazdu (znak drogowy B-2) */
.no-entry-marker {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #dc2626;
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.6), 0 0 0 1px #991b1b;
}
.no-entry-bar {
  width: 65%;
  height: 5px;
  background: #fff;
  border-radius: 1px;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 860px;
}
.faq-item {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  transition: border-color 250ms, background 250ms, box-shadow 250ms;
  box-shadow: var(--shadow-sm);
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item.open {
  border-color: var(--lime);
  background: linear-gradient(180deg, rgba(253, 195, 24, 0.05), var(--white) 60%);
  box-shadow: var(--shadow-md);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
}
.faq-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--smoke);
  display: grid; place-items: center;
  transition: background 250ms, color 250ms, transform 300ms var(--ease-out);
  color: var(--lime-deep);
}
.faq-item.open .faq-icon {
  background: var(--lime);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease-out);
}
.faq-a-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--steel);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 65ch;
}
.faq-a-inner strong { color: var(--ink); }

/* ===== FORM ===== */
.form-section {
  position: relative;
  overflow: hidden;
}

/* ===== AGENDA (timeline godzinowy) ===== */
.agenda {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem clamp(1.25rem, 4vw, 2.5rem);
  background: linear-gradient(180deg, #ffd54d 0%, #fdc318 100%);
  border-radius: 28px;
  border: 1px solid rgba(218, 164, 8, 0.5);
  box-shadow: 0 24px 56px -22px rgba(218, 164, 8, 0.55), 0 8px 20px -8px rgba(10, 10, 12, 0.12);
  position: relative;
  overflow: hidden;
}
.agenda-character {
  position: absolute;
  right: 2rem;
  bottom: -2rem;
  width: 280px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 18px 24px rgba(10, 10, 12, 0.22));
  animation: agenda-char-float 6s ease-in-out infinite alternate;
  transform-origin: bottom center;
}
@keyframes agenda-char-float {
  from { transform: translateY(0) rotate(-1.5deg); }
  to   { transform: translateY(-6px) rotate(1.5deg); }
}
.agenda .agenda-list { position: relative; z-index: 2; max-width: 65%; }
@media (max-width: 900px) {
  .agenda-character { width: 180px; right: 0.5rem; bottom: -1.5rem; }
  .agenda .agenda-list { max-width: 70%; }
}
@media (max-width: 640px) {
  .agenda-character { display: none; }
  .agenda .agenda-list { max-width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .agenda-character { animation: none; }
}
.agenda-list {
  list-style: none;
  position: relative;
  padding-left: 1.5rem;
}
.agenda-list::before {
  content: "";
  position: absolute;
  top: 8px; bottom: 8px;
  left: 0.5rem;
  width: 3px;
  background: var(--ink);
  border-radius: 2px;
}
.agenda-item {
  position: relative;
  padding-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.agenda-item:last-child { padding-bottom: 0; }
.agenda-item::before {
  content: "";
  position: absolute;
  /* Środek kropki dokładnie na środku linii (linia at 0.5rem + 1.5px = 9.5px, kropka 14/2 = 7px → left in list-coords 2.5px, minus 1.5rem agenda-item padding) */
  left: calc(0.5rem + 1.5px - 7px - 1.5rem);
  top: 0.4rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--ink);
}
.agenda-item-end::before {
  background: #fff;
}
.agenda-time {
  display: inline-block;
  font-family: "Exo 2", sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--ink);
  color: #fdc318;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
  margin-bottom: 0.45rem;
}
.agenda-body h3 {
  font-family: "Exo 2", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}
.agenda-body p {
  font-size: 0.93rem;
  color: var(--graphite);
  line-height: 1.5;
}

/* ===== LISTA ATRAKCJI ===== */
.attractions {
  max-width: 1120px;
  margin: 5rem auto 0;
  padding: 2rem clamp(1.25rem, 4vw, 2.5rem);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}
.attractions-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px dashed rgba(253, 195, 24, 0.5);
}
.attractions-title {
  font-family: "Exo 2", sans-serif;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0;
}
.attractions-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  background: rgba(253, 195, 24, 0.2);
  color: var(--ink);
  border: 1.5px solid rgba(218, 164, 8, 0.45);
  border-radius: 999px;
  font-family: "Exo 2", "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}
.attractions-time-badge svg { color: var(--lime-dark); flex-shrink: 0; }
@media (max-width: 640px) {
  .attractions-head { gap: 0.85rem; margin-bottom: 1.75rem; }
  .attractions-time-badge { padding: 0.55rem 1.15rem; font-size: 0.88rem; }
}
/* Grid kart atrakcji */
.attractions-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) {
  .attractions-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .attractions-grid { grid-template-columns: repeat(4, 1fr); }
}
.attraction-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.25rem 0.75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 1px 3px rgba(10, 10, 12, 0.04), 0 4px 12px -4px rgba(10, 10, 12, 0.06);
  transition: transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out), border-color 250ms;
  cursor: default;
}
.attraction-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(218, 164, 8, 0.5);
  box-shadow: 0 16px 30px -10px rgba(218, 164, 8, 0.3), 0 4px 10px -2px rgba(10, 10, 12, 0.08);
}
.attraction-emoji {
  font-size: 2.4rem;
  line-height: 1;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
}
.attraction-illu {
  width: 54px;
  height: 54px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(10, 10, 12, 0.18));
  transition: transform 350ms var(--ease-out);
  user-select: none;
  -webkit-user-drag: none;
}
.attraction-card:hover .attraction-illu {
  transform: scale(1.15) rotate(-6deg);
}
.attraction-name {
  font-family: "Exo 2", "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--ink);
  letter-spacing: 0.01em;
  line-height: 1.3;
}
@media (max-width: 640px) {
  .attractions-grid { gap: 0.5rem; }
  .attraction-card { padding: 1rem 0.5rem; gap: 0.4rem; }
  .attraction-emoji { font-size: 2rem; }
  .attraction-name { font-size: 0.75rem; }
}
@media (max-width: 640px) {
  .agenda, .attractions { padding: 1.5rem 1.25rem; border-radius: 20px; }
  .agenda-body h3 { font-size: 1rem; }
  .agenda-body p { font-size: 0.88rem; }
}

/* ===== ENTRY NOTICE (karta pracownicza) ===== */
.entry-notice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto 2rem;
  padding: 1.15rem 1.6rem 1.15rem 1.4rem;
  background: #fdecec;
  color: var(--ink);
  border-radius: 14px;
  border: 1.5px solid rgba(220, 38, 38, 0.35);
  border-left: 6px solid #dc2626;
  box-shadow: 0 10px 22px -10px rgba(220, 38, 38, 0.35), 0 2px 6px rgba(10, 10, 12, 0.06);
  position: relative;
  z-index: 5;
}
.entry-notice-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.65rem;
  background: #dc2626;
  color: #fff;
  border-radius: 6px;
  font-family: "Exo 2", sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  flex-shrink: 0;
  margin-top: 2px;
}
.entry-notice-icon {
  color: #dc2626;
  flex-shrink: 0;
  margin-top: 3px;
}
.entry-notice strong {
  display: block;
  font-family: "Exo 2", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.2rem;
  letter-spacing: 0.01em;
}
.entry-notice span:not(.entry-notice-badge) {
  display: block;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--graphite);
  font-weight: 500;
}
@media (max-width: 640px) {
  .entry-notice {
    flex-wrap: wrap;
    padding: 0.9rem 1.1rem 0.95rem;
    gap: 0.55rem;
  }
  .entry-notice strong { font-size: 0.88rem; }
  .entry-notice span:not(.entry-notice-badge) { font-size: 0.82rem; }
  .entry-notice-badge { font-size: 0.62rem; padding: 0.18rem 0.5rem; }
}

/* ===== LISTA PARKINGÓW (pod mapą) ===== */
.parkings {
  margin-top: 2rem;
}
.parkings-title {
  font-family: "Exo 2", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.parkings-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .parkings-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
  .parkings-grid { grid-template-columns: repeat(4, 1fr); }
}
.parking-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out), border-color 250ms;
  height: 100%;
}
.parking-card:has(.parking-info-badge) { z-index: 5; }
.parking-card:hover { z-index: 10; }
.parking-body { display: flex; flex-direction: column; }
.parking-card:hover {
  transform: translateY(-3px);
  border-color: #2563eb;
  box-shadow: 0 14px 28px -10px rgba(37, 99, 235, 0.35);
}
.parking-info-badge {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #dc2626;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1.5px #dc2626, 0 4px 10px rgba(220, 38, 38, 0.45);
  cursor: help;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transition: transform 200ms, box-shadow 200ms;
  padding: 0;
}
.parking-info-badge:hover,
.parking-info-badge:focus-visible {
  transform: scale(1.1);
  box-shadow: 0 0 0 1.5px #dc2626, 0 6px 14px rgba(220, 38, 38, 0.6);
  outline: none;
}
.parking-info-badge-icon { color: #fff; flex-shrink: 0; }

/* Tooltip (dymek z ikoną karty + tekstem) */
.parking-info-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  right: -6px;
  width: 250px;
  padding: 0.8rem 0.9rem;
  background: #0a0a0c;
  color: #fff;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms, transform 200ms, visibility 200ms;
  transform: translateY(6px);
  z-index: 10;
  box-shadow: 0 14px 30px -8px rgba(0, 0, 0, 0.4);
}
.parking-info-tooltip::before {
  content: "";
  position: absolute;
  top: 100%;
  right: 12px;
  border: 6px solid transparent;
  border-top-color: #0a0a0c;
}
.parking-info-tooltip-icon {
  color: #fdc318;
  flex-shrink: 0;
  margin-top: 1px;
}
.parking-info-badge:hover .parking-info-tooltip,
.parking-info-badge:focus-visible .parking-info-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.parking-marker-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-family: "Exo 2", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4), 0 0 0 2px #1d4ed8;
  align-self: flex-start;
}
.parking-body h4 {
  font-family: "Exo 2", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.15rem;
}
.parking-address {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.18rem 0.55rem;
  background: rgba(37, 99, 235, 0.1);
  color: #1d4ed8;
  border-radius: 6px;
  font-family: "Exo 2", "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
/* Compact warning box dla P0 i P1 (combined 2 linie) */
.parking-warning {
  margin-top: 0.5rem;
  padding: 0.65rem 0.75rem 0.65rem 0.9rem;
  background: #f4f4f6;
  color: var(--ink);
  border-radius: 10px;
  border-left: 4px solid #dc2626;
  font-size: 0.74rem;
  line-height: 1.35;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.parking-warning-line {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 700;
}
.parking-warning-line svg {
  color: #dc2626;
  flex-shrink: 0;
  margin-top: 1px;
}
.parking-body p {
  font-size: 0.85rem;
  color: var(--steel);
  line-height: 1.45;
}
.parking-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding: 0.6rem 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  align-self: flex-start;
  transition: background 200ms, transform 200ms;
}
.parking-cta:hover {
  background: #2563eb;
  transform: translateY(-1px);
}
.form-section .section-head {
  position: relative;
  z-index: 5;
}

/* Deadline pill — informacja "Zapisy trwają do…" — BIG / ATTENTION */
.signup-deadline {
  position: relative;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.5rem;
  padding: 1.1rem 1.75rem 1.1rem 1.4rem;
  background: linear-gradient(135deg, #0a0a0c 0%, #1a1a1d 100%);
  color: #fff;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  border: 3px solid #fdc318;
  box-shadow:
    0 16px 36px -10px rgba(218, 164, 8, 0.55),
    0 6px 14px -4px rgba(10, 10, 12, 0.4),
    0 0 0 0 rgba(253, 195, 24, 0.55);
  animation: deadline-pulse 2.2s ease-out infinite;
}
@keyframes deadline-pulse {
  0%   { box-shadow: 0 16px 36px -10px rgba(218, 164, 8, 0.55), 0 6px 14px -4px rgba(10, 10, 12, 0.4), 0 0 0 0 rgba(253, 195, 24, 0.55); }
  70%  { box-shadow: 0 16px 36px -10px rgba(218, 164, 8, 0.55), 0 6px 14px -4px rgba(10, 10, 12, 0.4), 0 0 0 16px rgba(253, 195, 24, 0); }
  100% { box-shadow: 0 16px 36px -10px rgba(218, 164, 8, 0.55), 0 6px 14px -4px rgba(10, 10, 12, 0.4), 0 0 0 0 rgba(253, 195, 24, 0); }
}
.signup-deadline-icon {
  color: #fdc318;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}
.signup-deadline strong {
  font-family: "Exo 2", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #fdc318;
  letter-spacing: 0.01em;
}
.signup-deadline-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.15rem;
}
@media (max-width: 640px) {
  .signup-deadline {
    padding: 0.85rem 1.25rem 0.85rem 1rem;
    gap: 0.65rem;
    font-size: 0.9rem;
  }
  .signup-deadline-icon { width: 22px; height: 22px; }
  .signup-deadline strong { font-size: 1rem; }
  .signup-deadline-label { font-size: 0.62rem; letter-spacing: 0.14em; }
}
@media (prefers-reduced-motion: reduce) {
  .signup-deadline { animation: none; }
}
.form-wrap {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}
.form-character {
  position: absolute;
  top: -340px;
  right: 2%;
  width: 360px;
  height: auto;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 22px 30px rgba(10, 10, 12, 0.25));
  animation: form-character-float 5.5s ease-in-out infinite alternate;
  transform-origin: bottom center;
}
@keyframes form-character-float {
  from { transform: translateY(0) rotate(-2deg); }
  to   { transform: translateY(-10px) rotate(2deg); }
}
@media (max-width: 1024px) {
  .form-character {
    width: 260px;
    top: -245px;
  }
}
@media (max-width: 640px) {
  .form-character {
    width: 110px;
    top: -100px;
    right: 4%;
  }
}
@media (max-width: 480px) {
  .form-character {
    width: 90px;
    top: -82px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .form-character { animation: none; }
}

.form-card {
  position: relative;
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffd54d 0%, #fdc318 100%);
  border: 1px solid rgba(218, 164, 8, 0.5);
  box-shadow: 0 24px 56px -22px rgba(218, 164, 8, 0.55), 0 8px 20px -8px rgba(10, 10, 12, 0.12);
}
.form-card .field input,
.form-card .field select,
.form-card .field textarea {
  background: var(--white);
}

/* Ciemniejsze teksty na żółtym tle formularza */
.form-card .field label,
.form-card .card-field-input label,
.form-card .radio-label,
.form-card .kids-title,
.form-card .check-row label {
  color: var(--ink);
}
.form-card .kids-sub,
.form-card .kids-empty,
.form-card .form-note,
.form-card .card-help-note {
  color: var(--graphite);
}
.form-card .check-row a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--lime-deep);
  text-decoration-thickness: 2px;
}
.form-card .field input::placeholder,
.form-card .field textarea::placeholder {
  color: var(--silver);
}
.form-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}

.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 700;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  background: var(--smoke);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--ink);
  font-size: 0.98rem;
  transition: border-color 200ms, background 200ms, box-shadow 200ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--lime);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(253, 195, 24, 0.18);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--silver); }

/* Auto-asterisk for required fields (label + checkbox-row + radio-group) */
.field:has(input[required]) > label::after,
.field:has(select[required]) > label::after,
.card-field-input:has(input[required]) > label::after {
  content: " *";
  color: #c5341c;
  font-weight: 900;
  margin-left: 0.15rem;
}
.check-row:has(input[required]) > label::after {
  content: " *";
  color: #c5341c;
  font-weight: 900;
  margin-left: 0.1rem;
}

.form-required-note {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(10, 10, 12, 0.1);
}
.form-required-note .req-star {
  color: #c5341c;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1;
}
.field .err {
  color: var(--coral);
  font-size: 0.78rem;
  min-height: 1rem;
  font-weight: 600;
}

/* Radio pills + conditional + kids */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.radio-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 700;
}
.radio-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.radio-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  background: var(--smoke);
  border: 1px solid var(--border);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  transition: background 200ms, border-color 200ms, color 200ms;
}
.radio-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio-pill:has(input:checked) {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.radio-pill:hover { border-color: var(--border-strong); }
.radio-pill:has(input:checked):hover { border-color: var(--ink); }

.conditional-block {
  border-top: 1px dashed var(--border);
  padding-top: 1rem;
}
.form-grid-nested {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .form-grid-nested { grid-template-columns: 1fr 1fr; }
}

/* Kids block */
.kids-block {
  border-top: 1px dashed var(--border);
  padding-top: 1.25rem;
}
.kids-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.kids-title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.kids-sub {
  display: block;
  font-size: 0.8rem;
  color: var(--steel);
  margin-top: 0.15rem;
}
.kids-warning {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.55rem;
  padding: 0.45rem 0.9rem;
  background: #0a0a0c;
  color: #fff;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
  box-shadow: 0 4px 10px -2px rgba(10, 10, 12, 0.25);
}
.kids-warning-icon {
  flex-shrink: 0;
  color: #fdc318;
}
.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
  gap: 0.4rem;
}
.kids-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.kid-row {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 110px auto;
  align-items: end;
  padding: 0.9rem 1rem;
  background: var(--smoke);
  border: 1px solid var(--border);
  border-radius: 14px;
  animation: kidIn 350ms var(--ease-out);
}
.kid-row .field { gap: 0.35rem; }
.kid-row label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--steel);
}
.kid-row input,
.kid-row select {
  padding: 0.7rem 0.85rem;
  background: var(--white);
  font-size: 0.9rem;
}
.kid-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--steel);
  cursor: pointer;
  transition: color 200ms, border-color 200ms, background 200ms;
}
.kid-remove:hover {
  color: var(--coral);
  border-color: var(--coral);
  background: rgba(255, 90, 60, 0.06);
}
.kids-empty {
  font-size: 0.85rem;
  color: var(--steel);
  font-style: italic;
}
@keyframes kidIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 560px) {
  .kid-row { grid-template-columns: 1fr 90px 38px; gap: 0.5rem; }
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
}
.check-row input[type="checkbox"] {
  width: 20px; height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--lime);
  cursor: pointer;
}
.check-row label {
  font-size: 0.88rem;
  color: var(--steel);
  line-height: 1.5;
  cursor: pointer;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
}
.check-row a { color: var(--lime-deep); text-decoration: underline; font-weight: 600; }

.form-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.form-note {
  font-size: 0.82rem;
  color: var(--steel);
}

/* ===== FORM — mobile fixes ===== */
@media (max-width: 640px) {
  .form-card {
    padding: 1.25rem 1rem;
    border-radius: 20px;
  }
  .form-grid { gap: 1rem; }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
    padding: 0.85rem 0.95rem;
  }
  .form-required-note {
    margin-bottom: 1rem;
    font-size: 0.7rem;
    padding: 0.35rem 0.7rem;
  }
  .card-field {
    padding: 1rem;
    gap: 1rem;
  }
  .card-flip {
    width: 220px;
  }
  .card-field-input input {
    font-size: 16px;
    letter-spacing: 0.35em;
  }
  .form-actions {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 0.85rem;
  }
  .form-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .form-note {
    text-align: center;
    font-size: 0.78rem;
  }
  .check-row { gap: 0.6rem; align-items: flex-start; }
  .check-row label { font-size: 0.85rem; line-height: 1.45; }
  .radio-row { gap: 0.5rem; flex-wrap: wrap; }
  .kids-head { gap: 0.65rem; }
  .kids-head > div { flex: 1 1 100%; }
  .kids-title { font-size: 0.95rem; }
  .form-section .section-head {
    margin-bottom: 2rem;
    padding-right: 100px;
  }
}
@media (max-width: 420px) {
  .kid-row {
    grid-template-columns: 1fr 80px 36px;
    padding: 0.7rem 0.75rem;
    gap: 0.4rem;
  }
  .kid-remove { width: 36px; height: 36px; }
  .card-flip { width: 180px; }
}

/* ===== SUCCESS STATE ===== */
.success-card {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) 2rem;
  border-radius: 32px;
  background: linear-gradient(160deg, rgba(253, 195, 24, 0.08), rgba(255, 204, 30, 0.05) 60%, var(--white) 100%);
  border: 1px solid rgba(253, 195, 24, 0.35);
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  animation: successIn 600ms var(--ease-out);
}
@keyframes successIn {
  from { opacity: 0; transform: scale(0.96) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.success-check {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--white);
  display: grid; place-items: center;
  margin: 0 auto 2rem;
  box-shadow: 0 18px 50px -10px rgba(253, 195, 24, 0.55);
  animation: checkPop 700ms var(--ease-out) both;
}
@keyframes checkPop {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.success-card h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.success-card p {
  color: var(--steel);
  font-size: 1.05rem;
  max-width: 42ch;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.success-card strong { color: var(--ink); }

.hidden { display: none !important; }

/* ===== FOOTER ===== */
.footer {
  padding: 3rem 0;
  margin-top: 4rem;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem 2.5rem;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
}
.footer-logo {
  height: 38px;
  width: auto;
  display: block;
  opacity: 0.9;
  transition: opacity 200ms;
}
.footer-logo:hover { opacity: 1; }
.footer-meta {
  color: var(--steel);
  font-size: 0.85rem;
  line-height: 1.5;
  text-align: center;
  flex: 1 1 auto;
}
.footer-team {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin-top: 0.35rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--steel);
}
.footer-links a { font-weight: 700; }
.footer-links a:hover { color: var(--lime-deep); }
@media (max-width: 640px) {
  .footer-inner { justify-content: center; text-align: center; }
  .footer-meta { text-align: center; }
  .footer-logo { height: 32px; }
}

/* ===== REVEAL ON SCROLL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="100"] { transition-delay: 100ms; }
.reveal[data-delay="200"] { transition-delay: 200ms; }
.reveal[data-delay="300"] { transition-delay: 300ms; }
.reveal[data-delay="400"] { transition-delay: 400ms; }

/* ===== MARQUEE (delikatny pasek u góry coming-soon) ===== */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
  background: var(--white);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 700;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 1.5rem; }
.marquee-track span::after {
  content: "✱";
  color: var(--lime);
  margin-left: 1.5rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== MOBILE FIXES ===== */
@media (max-width: 640px) {
  .countdown-grid { gap: 0.5rem; }
  .cd-cell { padding: 1rem 0.25rem 0.75rem; }
  .cd-lbl { font-size: 0.55rem; letter-spacing: 0.15em; }
  .hero-meta { gap: 1.5rem 2rem; }
}

/* ===== SECTION LEAD ===== */
.section-head .section-lead {
  margin-top: 1rem;
  max-width: 44rem;
  color: var(--steel);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.6;
}

/* ===== GALERIA — masonry-light grid + lightbox ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffe890 0%, #fdc318 100%);
  cursor: zoom-in;
  border: 1px solid rgba(218, 164, 8, 0.3);
  box-shadow: 0 4px 14px -4px rgba(10, 10, 12, 0.12);
  transition: transform 350ms var(--ease-out), box-shadow 350ms var(--ease-out);
}
.gallery-item-wide {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms var(--ease-out);
}
/* Placeholder gdy brak obrazu — zachowuje placeholder żółtego tła */
.gallery-item img:not([src]),
.gallery-item img[src=""] {
  display: none;
}
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 12, 0.55) 100%);
  opacity: 0;
  transition: opacity 300ms;
  z-index: 1;
  pointer-events: none;
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -10px rgba(10, 10, 12, 0.28);
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item:hover::before { opacity: 1; }

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item-wide { grid-column: span 2; }
}
@media (max-width: 720px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 8px;
  }
  .gallery-item-wide { grid-column: span 2; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 10, 12, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lightbox-in 250ms var(--ease-out);
}
.lightbox[hidden] { display: none; }
@keyframes lightbox-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lightbox-img {
  max-width: min(94vw, 1400px);
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  user-select: none;
  -webkit-user-drag: none;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 200ms, transform 200ms;
  backdrop-filter: blur(8px);
}
.lightbox-close:hover,
.lightbox-nav:hover {
  background: #fdc318;
  color: #0a0a0c;
  transform: scale(1.05);
}
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { left: 1.5rem;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
@media (max-width: 640px) {
  .lightbox-close { top: 0.75rem; right: 0.75rem; width: 40px; height: 40px; }
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

/* ===== CARD NUMBER FIELD — 2-column layout (input + flip visual) ===== */
.card-field {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem 2rem;
  align-items: center;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px dashed rgba(253, 195, 24, 0.5);
  border-radius: 18px;
}
@media (min-width: 720px) {
  .card-field { grid-template-columns: 1fr auto; }
}
.card-field-input { display: flex; flex-direction: column; gap: 0.5rem; }
.card-field-input label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 700;
}
.card-field-input input {
  letter-spacing: 0.4em;
  font-family: "Exo 2", "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  text-align: center;
}
.card-help-note {
  font-size: 0.78rem;
  color: var(--steel);
  line-height: 1.5;
  margin-top: 0.15rem;
}
.card-field-visual {
  display: flex;
  justify-content: center;
}

/* The flippable card */
.card-flip {
  perspective: 1200px;
  width: 240px;
  aspect-ratio: 1.6 / 1;
}
.card-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: card-flip-spin 7s ease-in-out infinite;
}
@keyframes card-flip-spin {
  0%, 38%   { transform: rotateY(0deg); }
  50%, 88%  { transform: rotateY(180deg); }
  100%      { transform: rotateY(360deg); }
}
.card-face {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px -10px rgba(10, 10, 12, 0.22), 0 4px 10px -2px rgba(10, 10, 12, 0.08);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-side-label {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e53935;
  text-align: center;
  margin-top: auto;
}
.card-side-label-ok { color: #1f8a3c; }

/* FRONT */
.card-front {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: 1fr auto auto;
  gap: 0.5rem 1rem;
  align-items: center;
}
.card-avatar {
  grid-column: 1; grid-row: 1;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.card-name {
  grid-column: 1 / -1; grid-row: 2;
  font-family: "Exo 2", sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-top: 0.15rem;
}
.card-wrong {
  grid-column: 3; grid-row: 1;
  position: relative;
  font-family: "Exo 2", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--ink);
  padding: 0.15rem 0.5rem;
}
.card-wrong-num { position: relative; z-index: 1; }
.card-wrong-x {
  position: absolute;
  inset: -8px -4px -8px -4px;
  width: calc(100% + 8px);
  height: calc(100% + 16px);
  pointer-events: none;
}
.card-front .card-side-label { grid-column: 1 / -1; grid-row: 3; }

/* BACK */
.card-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.card-back-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  align-self: flex-end;
  background: #fdc318;
  color: var(--ink);
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  font-family: "Exo 2", sans-serif;
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
}
.card-back-camel { display: inline-flex; }
.card-back-stripe {
  width: 38%;
  height: 6px;
  background: linear-gradient(90deg, #fdc318, #e6a90c);
  border-radius: 3px;
  align-self: flex-start;
}
.card-back-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}
.card-back-pass {
  font-family: "Exo 2", sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--ink);
}
.card-right {
  position: relative;
  font-family: "Exo 2", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--ink);
  padding: 0.22rem 0.6rem;
  border: 2px solid #1f8a3c;
  border-radius: 9px;
  box-shadow: 0 0 0 0 rgba(31, 138, 60, 0.4);
  animation: card-pulse-ok 1.8s ease-out infinite;
}
@keyframes card-pulse-ok {
  0%   { box-shadow: 0 0 0 0 rgba(31, 138, 60, 0.45); }
  70%  { box-shadow: 0 0 0 12px rgba(31, 138, 60, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 138, 60, 0); }
}

/* Smaller on mobile */
@media (max-width: 480px) {
  .card-flip { width: 100%; }
  .card-face { padding: 0.9rem 1rem; }
  .card-wrong, .card-right { font-size: 1.15rem; }
  .card-name { font-size: 0.85rem; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .card-flip-inner { animation: none; }
  .card-right { animation: none; }
}
