/* ======================================================
   OBECNOŚĆ — NORMALIZACJA DO POCZĄTEK (FINAL)
   ====================================================== */

/* ---------- HERO ---------- */

.hero--obecnosc {
  position: relative;
  min-height: 60vh;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.35),
      rgba(0,0,0,0.55)
    ),
    url("../images/hero/obecnosc-hero.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero--obecnosc .hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: #fff;
}

.hero--obecnosc h1 {
  font-size: 64px;
  margin-bottom: 18px;
  font-weight: 500;
}

.hero--obecnosc .hero-lead {
  font-size: 22px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.hero--obecnosc .hero-sub {
  font-size: 20px;
  line-height: 1.6;
  opacity: 0.95;
}

/* ---------- AVATAR ---------- */

.avatar-wrapper {
  position: absolute;
  bottom: -80px; /* było -90 */
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 5;
}

.avatar {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #f8f5ee;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

/* ---------- SEKCJE (KLUCZOWA ZMIANA) ---------- */

.section-texture {
  padding: 44px 0 40px; /* było 70 / 60 */
}

.section-tight {
  padding: 40px 0; /* było 60 */
}

.container {
  max-width: 1200px;
}

/* ---------- UKŁAD 40 / 60 ---------- */

.two-columns {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 2.5rem; /* było 3.5rem */
}

.column-left h2 {
  font-size: 36px;
  line-height: 1.25;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 12px;
}

.column-right p {
  font-size: 21px;
  line-height: 1.85;
  margin-bottom: 16px; /* było 20 */
  color: #2b2b2b;
}

.column-right p:last-child {
  margin-bottom: 0;
}

/* ---------- ROLE ---------- */

.pillars {
  padding: 44px 0 32px; /* było 60 / 40 */
}

.roles-header {
  text-align: center;
  margin-bottom: 32px; /* było 44 */
}

.roles-header h2 {
  font-size: 38px;
  font-weight: 500;
  color: var(--gold);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem; /* było 3rem */
  text-align: center;
}

.pillar-icon {
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 8px;
}

.pillar h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.pillar p {
  font-size: 18px;
  line-height: 1.7;
}

.pillar p span {
  display: block;
  margin-bottom: 4px;
}

/* ---------- DLA KOGO ---------- */

.rezonans {
  padding: 44px 0; /* było 60 */
  text-align: center;
}

.rezonans h2 {
  font-size: 38px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 22px;
}

.rezonans p {
  max-width: 760px;
  margin: 0 auto 14px;
  font-size: 21px;
  line-height: 1.85;
}

.rezonans p:last-child {
  margin-bottom: 0;
}

/* ---------- CTA ---------- */

.cta-final {
  position: relative;
  padding: 90px 0; /* było 110 */
  background:
    linear-gradient(
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.55)
    ),
    url("../images/cta/obecnosc-cta.jpg") center / cover no-repeat;
  text-align: center;
  color: #fff;
}

.cta-final h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.cta-final p {
  font-size: 20px;
  margin-bottom: 22px;
}

.cta-final .cta-button {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: 14px 38px;
  border-radius: 999px;
  font-size: 17px;
  text-decoration: none;
}

/* ---------- MOBILE ---------- */

@media (max-width: 900px) {
  .two-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .avatar-wrapper {
    position: relative;
    bottom: auto;
    margin-top: 32px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .section-texture,
  .section-tight,
  .pillars,
  .rezonans {
    padding: 32px 0;
  }
}