.split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 24px;
  align-items: start;
}

.bio {
  padding: 22px;
}

.bio p {
  margin: 0 0 16px;
  color: var(--muted);
}

.facts {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.fact {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 11px 13px;
  background: rgba(255,255,255,.035);
}

.fact span:first-child {
  color: var(--soft);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.fact span:last-child {
  color: var(--text);
  text-align: right;
  font-weight: 800;
}

.socials {
  padding: 12px;
  display: grid;
  gap: 10px;
}

.social {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 13px;
  border: 1px solid transparent;
  border-radius: 18px;
  background: rgba(255,255,255,.025);
}

.social:hover {
  border-color: var(--line2);
  background: rgba(103, 232, 255, .06);
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-weight: 950;
  font-size: 13px;
  letter-spacing: .02em;
  color: #071016;
  background: linear-gradient(135deg, #2f9bff, #9fe7ff);
  border: 1px solid rgba(70, 175, 255, .72);
  box-shadow:
    0 0 0 1px rgba(70, 175, 255, .14),
    0 0 20px rgba(47, 155, 255, .24),
    inset 0 1px 0 rgba(255, 255, 255, .36);
}

.icon.red {
  background: linear-gradient(135deg, #ff3358, #ff9aa8);
  border-color: rgba(255, 70, 95, .72);
  box-shadow:
    0 0 0 1px rgba(255, 70, 95, .16),
    0 0 20px rgba(255, 51, 88, .28),
    inset 0 1px 0 rgba(255, 255, 255, .36);
}

.icon.green {
  background: linear-gradient(135deg, #00dc72, #9dffc9);
  border-color: rgba(0, 220, 114, .72);
  box-shadow:
    0 0 0 1px rgba(0, 220, 114, .16),
    0 0 20px rgba(0, 220, 114, .28),
    inset 0 1px 0 rgba(255, 255, 255, .36);
}

.icon.orange {
  background: linear-gradient(135deg, #ff9f1c, #ffe0a3);
  border-color: rgba(255, 159, 28, .74);
  box-shadow:
    0 0 0 1px rgba(255, 159, 28, .17),
    0 0 20px rgba(255, 159, 28, .30),
    inset 0 1px 0 rgba(255, 255, 255, .36);
}

.icon.yellow {
  background: linear-gradient(135deg, #ffd166, #fff1be);
  border-color: rgba(255, 215, 120, .70);
  box-shadow:
    0 0 0 1px rgba(255, 215, 120, .16),
    0 0 18px rgba(255, 209, 102, .24),
    inset 0 1px 0 rgba(255, 255, 255, .32);
}

.icon.purple {
  background: linear-gradient(135deg, #9b7cff, #e4d9ff);
  border-color: rgba(170, 140, 255, .65);
  box-shadow:
    0 0 0 1px rgba(170, 140, 255, .14),
    0 0 18px rgba(155, 124, 255, .22),
    inset 0 1px 0 rgba(255, 255, 255, .32);
}

.social strong {
  display: block;
  font-size: 15px;
}

.social span span {
  display: block;
  color: var(--soft);
  font-size: 12px;
  margin-top: 1px;
}

.arrow {
  color: var(--soft);
  font-weight: 950;
}

.gallery-grid {
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.piece {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 28%, rgba(103,232,255,.22), transparent 9rem),
    linear-gradient(145deg, #111824, #070a10);
  position: relative;
}

.piece:nth-child(2) {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,94,120,.26), transparent 9rem),
    linear-gradient(145deg, #17111b, #070a10);
}

.piece:nth-child(3) {
  background:
    radial-gradient(circle at 70% 22%, rgba(93,255,159,.18), transparent 9rem),
    linear-gradient(145deg, #101b16, #070a10);
}

.piece:nth-child(4) {
  background:
    radial-gradient(circle at 48% 18%, rgba(255,209,102,.20), transparent 9rem),
    linear-gradient(145deg, #1b1810, #070a10);
}

.piece.large {
  grid-column: span 3;
  min-height: 320px;
}

.piece.small {
  grid-column: span 2;
}

.piece::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), transparent 45%),
    rgba(255,255,255,.025);
}

.piece-label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  background: rgba(5,7,11,.72);
  backdrop-filter: blur(14px);
  border-radius: 15px;
}

.piece-label strong {
  display: block;
  font-size: 14px;
}

.piece-label span {
  display: block;
  color: var(--soft);
  font-size: 12px;
  margin-top: 2px;
}

@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .piece.large,
  .piece.small {
    grid-column: auto;
    min-height: 260px;
  }

  .social {
    grid-template-columns: 44px 1fr;
  }

  .arrow {
    grid-column: 2;
  }

  .fact {
    display: grid;
  }

  .fact span:last-child {
    text-align: left;
  }
}

/* Socials page layout trim */
.socials-page .hero {
  padding: 32px 0 24px;
  align-items: start;
}

.socials-page .hero h1 {
  font-size: clamp(34px, 4.4vw, 58px);
  max-width: 820px;
  letter-spacing: -1.9px;
}

.socials-page .lead {
  max-width: 780px;
  margin-top: 14px;
  font-size: 16px;
}

.socials-page .hero-actions {
  margin-top: 20px;
}

/* Socials hero image */
.socials-page .social-hero-image {
  display: block;
  width: 100%;
  height: 480px;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
}

/* Match About and Socials card heights */
.socials-page .split {
  align-items: stretch;
}

.socials-page .split > .panel {
  height: 100%;
}

.socials-page .bio {
  min-height: 100%;
}
