 @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300&family=Montserrat:wght@300;400;500;600;700&display=swap');

  :root {
    --black: #0a0a0a;
    --dark: #111111;
    --dark2: #1a1a1a;
    --silver: #c0c0c0;
    --silver-light: #e8e8e8;
    --white: #ffffff;
    --gold: #c9a96e;
    --gold-light: #e8c98a;
    --text-muted: #888888;
    --border: rgba(192,192,192,0.15);
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--silver-light);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.8;
    overflow-x: hidden;
  }

  /* PRELOADER */
#preloader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center;
  gap: 15px;
  transition: opacity 0.8s ease;
}

#preloader.hidden { opacity: 0; pointer-events: none; }

/* Styl dla napisu */
@import url('https://googleapis.com');
.preloader-text {
  color: var(--gold); 
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.preloader-line {
  width: 200px; height: 1px;
  background: var(--border);
  overflow: hidden;
}

.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--silver));
  animation: fillLine 1.5s ease forwards;
}

#preloader-logo{
width: 80px;
height: auto;
display: block;
margin-bottom: 5px;
}

  @keyframes fillLine { from { width: 0; } to { width: 100%; } }

  /* NAVIGATION  */
    nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 28px 60px;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.5s ease;
    background: transparent;
  }
  nav.scrolled {
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px);
    padding: 18px 60px;
    border-bottom: 1px solid var(--border);
  }
  .nav-logo img { height: 52px; opacity: 0.95; filter: brightness(1.1); }
  .nav-links {
    display: flex; gap: 40px; list-style: none;
  }
  .nav-links a {
    color: var(--silver);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    padding: 10px 28px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  .nav-cta:hover {
    background: var(--gold);
    color: var(--black);
  }

  /* HERO  */
  #hero {
    height: 100vh;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: 
      radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.06) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 50%, rgba(192,192,192,0.04) 0%, transparent 60%),
      var(--black);
  }
  .hero-particles {
    position: absolute; inset: 0; overflow: hidden;
  }
  .particle {
    position: absolute;
    width: 1px; height: 1px;
    background: var(--gold);
    border-radius: 50%;
    animation: float linear infinite;
    opacity: 0;
  }
  @keyframes float {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.2; }
    100% { transform: translateY(-10px) translateX(20px); opacity: 0; }
  }
  .hero-content {
    text-align: center;
    position: relative; z-index: 2;
    animation: heroIn 1.5s ease forwards;
    animation-delay: 1.8s;
    opacity: 0;
  }
  @keyframes heroIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    font-weight: 500;
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 8vw, 100px);
    font-weight: 300;
    line-height: 1.0;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 12px;
  }
  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
  }
  .hero-subtitle {
    font-size: 11px;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--silver);
    margin-top: 24px;
    margin-bottom: 60px;
  }
  .hero-divider {
    width: 60px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 48px;
  }
  .hero-cta-group { display: flex; gap: 20px; justify-content: center; }
  .btn-primary {
    padding: 16px 48px;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.3s ease;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-outline {
    padding: 16px 48px;
    border: 1px solid rgba(192,192,192,0.3);
    color: var(--silver);
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
  .scroll-indicator {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    animation: heroIn 1.5s ease forwards; animation-delay: 2.5s; opacity: 0;
  }
  .scroll-indicator span {
    font-size: 9px; letter-spacing: 3px; color: var(--text-muted);
    text-transform: uppercase;
  }
  .scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

  /* SECTIONS COMMON  */
  section {
    padding: 120px 60px;
  }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-label {
    font-size: 9px; letter-spacing: 5px;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 20px; display: block;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 300; line-height: 1.1;
    color: var(--white); margin-bottom: 32px;
  }
  .section-title em { font-style: italic; color: var(--gold-light); }
  .section-line {
    width: 40px; height: 1px;
    background: var(--gold); margin-bottom: 40px;
  }

  /* REVEAL ANIMATIONS  */
  .reveal {
    opacity: 0; transform: translateY(50px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-left {
    opacity: 0; transform: translateX(-50px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .reveal-right {
    opacity: 0; transform: translateX(50px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }
  .delay-1 { transition-delay: 0.15s; }
  .delay-2 { transition-delay: 0.3s; }
  .delay-3 { transition-delay: 0.45s; }
  .delay-4 { transition-delay: 0.6s; }
  .delay-5 { transition-delay: 0.75s; }
  .delay-6 { transition-delay: 0.9s; }

  /* HOW IT WORKS */
  #how {
    background: var(--dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .how-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 300;
    color: var(--silver-light);
    line-height: 1.5;
    margin-bottom: 32px;
  }
  .how-lead strong { color: var(--gold); font-weight: 600; }
  .how-body {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.9;
  }
  .steps {
    display: flex; flex-direction: column; gap: 0;
  }
  .step {
    display: flex; gap: 32px; align-items: flex-start;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
  }
  .step:last-child { border-bottom: none; }
  .step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px; font-weight: 300;
    color: rgba(201,169,110,0.15);
    line-height: 1; flex-shrink: 0;
    width: 56px;
    transition: color 0.3s;
  }
  .step:hover .step-num { color: rgba(201,169,110,0.5); }
  .step-content h3 {
    font-size: 13px; letter-spacing: 2px;
    text-transform: uppercase; color: var(--white);
    font-weight: 600; margin-bottom: 8px;
  }
  .step-content p { font-size: 13px; color: var(--text-muted); line-height: 1.8; }

  /* EVENTS */
  #events { background: var(--black); }
  .events-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .event-list-item {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 44px 48px;
    border: 1px solid var(--border);
    margin: -1px 0 0 -1px;
    transition: background 0.3s ease;
    position: relative;
  }
  .event-list-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform 0.35s ease;
    transform-origin: bottom;
  }
  .event-list-item:hover { background: rgba(255,255,255,0.02); }
  .event-list-item:hover::before { transform: scaleY(1); }
  .eli-icon {
    font-size: 32px;
    flex-shrink: 0;
    margin-top: 2px;
    filter: grayscale(0.2);
  }
  .eli-content h3 {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 10px;
  }
  .eli-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
  }

/* WHY US */
  #why {
    background: var(--dark);
    border-top: 1px solid var(--border);
  }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 60px;
    background: var(--border);
  }
  .why-card {
    background: var(--dark2);
    padding: 48px 40px;
    transition: background 0.3s;
  }
  .why-card:hover { background: #1f1f1f; }
  .why-icon {
    font-size: 28px; margin-bottom: 24px;
    display: block;
    filter: grayscale(0.3);
  }
  .why-card h3 {
    font-size: 12px; letter-spacing: 2px;
    text-transform: uppercase; color: var(--white);
    font-weight: 600; margin-bottom: 16px;
  }
  .why-card p { font-size: 13px; color: var(--text-muted); line-height: 1.9; }

  /* QUOTE SECTION */
  #quote {
    background: var(--black);
    text-align: center;
    padding: 100px 60px;
  }
  .quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 300;
    font-style: italic;
    color: var(--silver-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
  }
  .quote-text em { color: var(--gold); font-style: normal; }
  .quote-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 40px auto;
  }

  /* FORM SECTION */
  #form-section {
    background: var(--dark);
    border-top: 1px solid var(--border);
  }
  .form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 100px;
    align-items: start;
  }
  .form-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 28px;
  }
  .form-info h2 em { font-style: italic; color: var(--gold); }
  .form-info p {
    font-size: 14px; color: var(--text-muted);
    line-height: 1.9; margin-bottom: 40px;
  }
  .contact-detail {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 16px;
  }
  .contact-detail .dot {
    width: 4px; height: 4px;
    background: var(--gold); border-radius: 50%;
    flex-shrink: 0;
  }
  .contact-detail span { font-size: 13px; color: var(--silver); }

  /* Form styles */
  .eh-form { display: flex; flex-direction: column; gap: 20px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 8px; }
  .form-group label {
    font-size: 9px; letter-spacing: 3px;
    text-transform: uppercase; color: var(--gold);
    font-weight: 600;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    color: var(--silver-light);
    padding: 14px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
    appearance: none;
    -webkit-appearance: none;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: #444; }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: rgba(201,169,110,0.5);
    background: rgba(255,255,255,0.05);
  }
  .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23c9a96e'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 10px;
    cursor: pointer;
    color: var(--silver-light);
  }
  .form-group select option { background: #1a1a1a; color: var(--silver-light); }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-group.full { grid-column: 1 / -1; }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 4px;
  }
  .service-check {
    display: flex; align-items: center; gap: 10px;
    cursor: pointer;
  }
  .service-check input[type="checkbox"] {
    appearance: none; -webkit-appearance: none;
    width: 16px; height: 16px; flex-shrink: 0;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
  }
  .service-check input[type="checkbox"]:checked {
    background: var(--gold);
    border-color: var(--gold);
  }
  .service-check input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute; top: -2px; left: 2px;
    font-size: 12px; color: var(--black); font-weight: 700;
  }
  .service-check span { font-size: 11px; color: var(--silver); cursor: pointer; }

  .budget-slider-wrap { position: relative; }
  .budget-display {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; color: var(--gold);
    margin-bottom: 12px;
  }
  input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%; height: 2px;
    background: rgba(255,255,255,0.1);
    outline: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }
  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    border: 2px solid var(--black);
    box-shadow: 0 0 8px rgba(201,169,110,0.5);
  }
  input[type="range"]::-moz-range-thumb {
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    border: 2px solid var(--black);
  }

  .privacy-note {
    font-size: 10px; color: #555;
    line-height: 1.7; margin-top: 4px;
  }
  .privacy-note a { color: var(--gold); text-decoration: none; }

  .btn-submit {
    padding: 18px 56px;
    background: var(--gold);
    color: var(--black);
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px; letter-spacing: 3px;
    text-transform: uppercase; font-weight: 700;
    transition: all 0.3s ease;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
  }
  .btn-submit::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(255,255,255,0.15);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
  }
  .btn-submit:hover::before { transform: translateX(0); }
  .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,169,110,0.3); }

  .success-msg {
    display: none; padding: 20px 24px;
    background: rgba(201,169,110,0.1);
    border: 1px solid rgba(201,169,110,0.3);
    color: var(--gold);
    font-size: 13px;
    margin-top: 20px;
  }

  /*  PARTNERS  */
  .partners-row {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
  }
  .partner-card {
    flex: 1;
    padding: 56px 60px;
    text-align: center;
    transition: background 0.3s;
  }
  .partner-card:hover { background: rgba(255,255,255,0.02); }
  .partner-icon { font-size: 48px; margin-bottom: 20px; }
  .partner-role {
    font-size: 9px; letter-spacing: 4px;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 10px;
  }
  .partner-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px; font-weight: 300;
    color: var(--white); margin-bottom: 20px;
  }
  .partner-desc {
    font-size: 13px; color: var(--text-muted);
    line-height: 1.9; max-width: 320px; margin: 0 auto;
  }
  .partner-divider {
    width: 1px; align-self: stretch;
    background: var(--border); flex-shrink: 0;
  }

  /*  VIDEO  */
  .video-wrap {
    position: relative;
    border: 1px solid var(--border);
    overflow: hidden;
  }
  .video-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.45);
    cursor: pointer;
    transition: background 0.3s;
  }
  .video-overlay:hover { background: rgba(0,0,0,0.3); }
  .video-overlay.hidden { display: none; }
  .play-btn {
    display: flex; flex-direction: column;
    align-items: center; gap: 16px;
  }
  .play-btn svg {
    width: 80px; height: 80px;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.6));
    transition: transform 0.3s;
  }
  .play-btn:hover svg { transform: scale(1.08); }
  .play-btn span {
    font-size: 10px; letter-spacing: 4px;
    text-transform: uppercase; color: rgba(255,255,255,0.7);
  }

  /* kontrolki do filmu */
/* Kontener dopasowujący szerokość paska do szerokości filmu (85%) */
.custom-video-container {
  overflow: hidden;
}

/* Pasek kontrolny wyświetlany na dole w obrębie 85% szerokości filmu */
.custom-video-controls {
  position: absolute;
  bottom: 0;
  left: 7.5%; /* Wyrównanie do filmu mającego 85% szerokości (100% - 85% = 15% / 2 = 7.5%) */
  width: 85%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  box-sizing: border-box;
  opacity: 0; 
  transition: opacity 0.3s ease;
  z-index: 10;
  pointer-events: none;
}

.custom-video-container:hover .custom-video-controls.active {
  opacity: 1;
  pointer-events: auto;
}

/* Wygląd przycisków sterujących */
.custom-ctrl-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  padding: 5px 10px;
  transition: transform 0.1s ease, color 0.2s;
}

.custom-ctrl-btn:hover {
  color: var(--gold, #ffd700);
  transform: scale(1.1);
}

/* Układ suwaka i ikony głośności */
.custom-volume-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-grow: 1;
  margin-left: 15px;
}

/* Stylizacja suwaka głośności */
#customVolumeSlider {
  -webkit-appearance: none;
  appearance: none;
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

#customVolumeSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold, #ffd700);
}

/* Wymuszenie czarnego tła kinowego dla całego kontenera w fullscreenie */
.custom-video-container:fullscreen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000 !important;
}

/* Zachowanie idealnych proporcji filmu 16:9 na pełnym ekranie bez obcinania krawędzi */
.custom-video-container:fullscreen video {
  width: 100% !important;
  height: auto !important;
  max-width: 100vw;
  max-height: 100vh;
  aspect-ratio: 16 / 9 !important;
  object-fit: contain !important; /* Dodaje czarne pasy, zapobiega ucinaniu kadru */
  margin: auto;
}

/* Pozycjonowanie i wygląd paska kontrolnego na pełnym ekranie */
.custom-video-container:fullscreen .custom-video-controls {
  position: absolute;
  bottom: 20px; 
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1200px;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Pokazywanie paska w fullscreenie po najechaniu myszką */
.custom-video-container:fullscreen:hover .custom-video-controls.active {
  opacity: 1;
}

  /* FOOTER  */
  footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 60px 60px 40px;
  }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
  }
  .footer-logo img { height: 40px; opacity: 0.7; }
  .footer-links { display: flex; gap: 32px; }
  .footer-links a {
    font-size: 10px; letter-spacing: 2px;
    text-transform: uppercase; color: var(--text-muted);
    text-decoration: none; transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--gold); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-copy { font-size: 11px; color: #938585; }
  .footer-copy strong { color: var(--silver); }
  .powered {
    font-size: 10px; color: #938585; letter-spacing: 1px;
  }
  .powered span { color: var(--gold); font-weight: 500; }

  .region-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px;
    border: 1px solid var(--border);
    margin-bottom: 40px;
  }

  /* Styl dla komunikatów o błędzie */
.error-message {
  color: #e74c3c;
  font-size: 13px;
  display: block;
  margin-top: 5px;
  font-weight: 500;
}

/* Czerwona ramka dla nieuzupełnionych pól input, select i textarea */
.eh-form input.invalid-input,
.eh-form select.invalid-input,
.eh-form textarea.invalid-input {
  border: 1px solid #e74c3c !important;
  background-color: #fdf2f2 !important;
}

/* Specjalne traktowanie checkboxa RODO */
.invalid-checkbox {
  outline: 2px solid #e74c3c;
  outline-offset: 2px;
}
/* Domyślnie ukrywamy komunikat o sukcesie */
#successMsg {
  display: none;
  margin-top: 15px;
  padding: 10px;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 4px;
}

/* Klasa, która pokaże komunikat tylko po udanej walidacji */
#successMsg.show {
  display: block;
}

  .region-badge span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }
  .region-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

  /* Mobile nav toggle */
  .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
  .nav-toggle span { display: block; width: 24px; height: 1px; background: var(--silver); margin: 6px 0; transition: all 0.3s; }

  @media (max-width: 768px) {
    .partners-row { flex-direction: column; }
    .partner-divider { width: 100%; height: 1px; align-self: auto; }
    .partner-card { padding: 40px 30px; }

        .events-list { grid-template-columns: 1fr; }
    .event-list-item { padding: 32px 24px; }
  }
  @media (max-width: 1024px) {
    nav { padding: 24px 30px; }
    nav.scrolled { padding: 16px 30px; }
    section { padding: 80px 30px; }
    .how-grid { grid-template-columns: 1fr; gap: 50px; }
    .events-grid { grid-template-columns: repeat(2, 1fr); }
    .events-grid .event-card:last-child { grid-column: 1 / -1; aspect-ratio: 2/1; }
    .form-wrapper { grid-template-columns: 1fr; gap: 60px; }
    .footer-top { flex-direction: column; gap: 24px; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .nav-links { display: none; }
    .nav-toggle { display: block; }
  }
  @media (max-width: 640px) {
    .hero-title { font-size: 42px; }
    .events-grid { grid-template-columns: 1fr; }
    .events-grid .event-card:last-child { aspect-ratio: 3/4; }
    .why-grid { grid-template-columns: 1fr; background: none; gap: 1px; }
    .form-row { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-cta-group { flex-direction: column; align-items: center; }
    .nav-cta { display: none; }
  } 