/* ═══════════════════════════════════
   O PROJEKTU · PAGE STYLES
   ═══════════════════════════════════ */

/* ── PAGE HERO ───────────────────────────────────────── */
.ph {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  padding: 80px var(--pad) 88px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.ph__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 80% 50%, rgba(62,203,164,.1) 0%, transparent 65%);
  pointer-events: none;
}

.ph__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.ph__shape {
  position: absolute;
  color: var(--mint);
}
.ph__shape--tri {
  width: 120px;
  top: 10%; right: 8%;
  opacity: .06;
  animation: sf 14s ease-in-out infinite;
}
.ph__shape--circ {
  width: 180px;
  bottom: -30px; right: 20%;
  opacity: .04;
  animation: sf 18s ease-in-out infinite reverse;
}

.ph__body {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ph__back {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(62,203,164,.6);
  text-decoration: none;
  letter-spacing: .02em;
  transition: color .2s;
  width: fit-content;
}
.ph__back:hover { color: var(--mint); }

.ph__label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--mint);
  opacity: .7;
}

.ph__h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--snow);
  letter-spacing: -.02em;
}
.ph__h1 em {
  font-style: italic;
  color: var(--mint);
}

/* ── PULL QUOTE ──────────────────────────────────────── */
.pullquote {
  position: relative;
  padding: 22px 28px 22px 24px;
  border-left: 3px solid var(--mint);
  background: rgba(62,203,164,.05);
  border-radius: 0 var(--rsm) var(--rsm) 0;
}
.pullquote__mark {
  position: absolute;
  top: 4px; left: 14px;
  font-family: var(--serif);
  font-size: 3.5rem;
  color: var(--mint);
  opacity: .15;
  line-height: 1;
}
.pullquote p {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-style: italic;
  font-weight: 300;
  color: var(--teal);
  line-height: 1.6;
  position: relative;
}

/* ── ORIGIN CARD ─────────────────────────────────────── */
.origin-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s;
}
.origin-card:hover { border-color: var(--mint); }
.origin-card__label {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--teal-deep);
}
.origin-card p {
  font-size: .97rem;
  color: var(--t2);
  line-height: 1.7;
}

/* ── MENTOR CARD ─────────────────────────────────────── */
.mentor-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r);
  width: fit-content;
}
.mentor-card__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--mint));
  color: white;
  font-size: .88rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  letter-spacing: .03em;
}
.mentor-card__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mentor-card__info strong {
  font-size: 1rem;
  color: var(--t1);
  font-weight: 700;
}
.mentor-card__info span {
  font-size: .82rem;
  color: var(--t3);
}

/* ── CREDENTIALS ─────────────────────────────────────── */
.credentials {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(42,122,108,.2);
  border-radius: var(--r);
  overflow: hidden;
}
.cred {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(62,203,164,.04);
  border-bottom: 1px solid rgba(42,122,108,.12);
  transition: background .2s;
}
.cred:last-child { border-bottom: none; }
.cred:hover { background: rgba(62,203,164,.09); }
.cred__icon {
  font-size: .9rem;
  color: var(--mint);
  flex-shrink: 0;
  opacity: .7;
}
.cred p {
  font-size: .94rem;
  color: var(--teal-deep);
  line-height: 1.5;
}
.cred strong { color: var(--teal-deep); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 860px) {
  .ph { padding: 64px var(--pad) 72px; }
  .mentor-card { width: 100%; }
}
@media (max-width: 600px) {
  .ph { padding: 52px var(--pad) 60px; }
  .pullquote { padding: 18px 20px 18px 20px; }
}
