/* =============================================================================
   HERO — wyśrodkowany (kicker + nagłówek + opis + 2 przyciski)
   ============================================================================= */

.hero {
  position: relative; min-height: 78vh; min-height: 78svh;
  overflow: hidden; color: #fff;
  display: flex; align-items: center; justify-content: center; text-align: center;
}

/* --- Tło + zasłona --- */
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05); will-change: transform;
  animation: heroZoom 22s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1.13); } }
.hero__veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 45%, rgba(14,14,12,0.30) 0%, rgba(14,14,12,0.55) 100%),
    linear-gradient(180deg, rgba(14,14,12,0.42) 0%, rgba(14,14,12,0.12) 35%, rgba(14,14,12,0.30) 70%, rgba(14,14,12,0.72) 100%);
}

/* --- Treść wyśrodkowana --- */
.hero__center {
  position: relative; z-index: 3;
  max-width: 1180px; margin: 0 auto;
  padding: clamp(96px, 12vh, 128px) var(--gutter) clamp(40px, 6vh, 60px);
}

.hero__kicker {
  display: block;
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold-lite);
  margin-bottom: clamp(20px, 3vw, 32px);
}

.hero__headline {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.7rem, 6.6vw, 5.6rem); line-height: 1.1; letter-spacing: -0.015em;
  color: #fff; text-shadow: 0 24px 70px rgba(0,0,0,0.42);
}
.hero__headline .l1 { white-space: nowrap; }
.hero__headline .accent { display: block; color: var(--gold-lite); }

.hero__lead {
  font-family: var(--font-body); font-weight: 300; font-size: 1.05rem; line-height: 1.75;
  color: rgba(255,255,255,0.9); max-width: 620px; margin: clamp(22px, 3vw, 32px) auto 0;
}

.hero__cta-row {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  margin-top: clamp(34px, 4.5vw, 48px);
}
.hero__cta {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 220px; padding: 18px 38px;
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: background 0.45s var(--ease), color 0.45s var(--ease),
              border-color 0.45s var(--ease), transform 0.45s var(--ease);
}
.hero__cta--gold { background: var(--gold); color: #fff; }
.hero__cta--gold:hover { background: var(--gold-deep); transform: translateY(-2px); }
.hero__cta--ghost {
  background: rgba(255,255,255,0.06); color: #fff;
  border: 1px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hero__cta--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-2px); }

/* --- Wejście (subtelne, stagger) --- */
.hero__kicker, .hero__headline, .hero__lead, .hero__cta-row {
  opacity: 0; transform: translateY(20px); animation: heroRise 1s var(--ease) forwards;
}
.hero__kicker   { animation-delay: 0.15s; }
.hero__headline { animation-delay: 0.30s; }
.hero__lead     { animation-delay: 0.50s; }
.hero__cta-row  { animation-delay: 0.68s; }
@keyframes heroRise { to { opacity: 1; transform: none; } }

/* --- Responsive --- */
@media (max-width: 640px) {
  .hero__kicker { font-size: 0.6rem; letter-spacing: 0.3em; }
  .hero__lead { font-size: 0.98rem; }
  .hero__cta-row { flex-direction: column; width: 100%; max-width: 340px; margin-inline: auto; }
  .hero__cta { width: 100%; min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg { animation: none; transform: scale(1.05); }
  .hero__kicker, .hero__headline, .hero__lead, .hero__cta-row { opacity: 1; transform: none; animation: none; }
}
