*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --text:#e5e5e5;
  --muted:rgba(229,229,229,0.70);
  --glass:rgba(0,0,0,0.45);
  --glass2:rgba(0,0,0,0.55);
  --stroke:rgba(255,255,255,0.10);
}

body{
  min-height:100vh;
  font-family:"Georgia",serif;
  color:var(--text);
  background:
    linear-gradient(rgba(10,10,10,0.78), rgba(10,10,10,0.88)),
    url("tlo.jpg");
  background-size:cover;
  background-position:center 5%;
  background-repeat:no-repeat;
}

.site-header{
  padding:28px 18px 10px;
}

.brand{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:6px;
  text-align:center;
}

.logo{
  font-size:34px;
  letter-spacing:2px;
  font-weight:400;
}

.tag{
  font-size:14px;
  letter-spacing:3px;
  opacity:0.70;
}

.wrap{
  max-width:1100px;
  margin:0 auto;
  padding:18px;
}

.hero{
  margin-top:10px;
  margin-bottom:10px;
}

.hero-card{
  background:linear-gradient(180deg, var(--glass), var(--glass2));
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:22px 20px;
  text-align:center;
}

.hero-card h1{
  font-size:40px;
  font-weight:400;
  letter-spacing:1px;
}

.lead{
  margin-top:10px;
  color:var(--muted);
  line-height:1.6;
  font-size:16px;
}

.hub{
  margin-top:32px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:22px;
}

.tile{
  text-decoration:none;
  color:var(--text);
  background:rgba(0,0,0,0.38);
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:18px;
  transition:transform .25s ease, background .25s ease, border-color .25s ease;
  display:flex;
  align-items:center;
}

.tile:hover{
  transform:translateY(-3px);
  background:rgba(0,0,0,0.48);
  border-color:rgba(255,255,255,0.18);
}

/* 🔥 NOWY UKŁAD OSÓB */
.person-row{
  display:flex;
  align-items:center;
  gap:16px;
  width:100%;
}

.person-row img{
  width:90px;
  height:90px;
  object-fit:cover;
  border-radius:10px;
  flex-shrink:0;
}

.person-info h2{
  font-size:20px;
  font-weight:400;
  letter-spacing:1px;
}

.person-info p{
  margin-top:6px;
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
}

.note{
  margin-top:16px;
}

.note-card{
  background:rgba(0,0,0,0.35);
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:14px 16px;
  text-align:center;
  color:var(--muted);
}

.site-footer{
  padding:24px 18px 26px;
  text-align:center;
  opacity:0.70;
  font-size:14px;
}

/* ===== RWD ===== */
@media (max-width: 900px) {
  .hero__wrap { padding: 56px 0; }
  .hero__content {
    margin-left: 0;
    text-align: center;
    padding: 40px 24px;
  }
}

@media (max-width: 520px) {
  .hero__wrap { width: calc(100% - 26px); }
  .hero__content { padding: 34px 18px; border-radius: 16px; }
  .hero__kicker-text { letter-spacing: 4px; font-size: 14px; }
  .btn { width: 100%; justify-content: center; }
}