/* assets/css/about.css */
.about-page {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 100vh;
}

/* Sticky photo column */
.photo-col {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: brightness(0.9) contrast(1.04);
}

.photo-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 65%, rgba(255,255,255,0.88) 100%),
    linear-gradient(to bottom, rgba(255,255,255,0.35) 0%, transparent 12%);
  pointer-events: none;
}

/* Scrollable text column */
.text-col {
  padding: 140px 64px 80px 56px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.bio-label {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin-bottom: 18px;
}

.bio-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: 0.05em;
  color: #0a0a0a;
  line-height: 1;
  margin-bottom: 26px;
}

.bio-text {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(0,0,0,0.65);
  font-weight: 400;
  max-width: 540px;
}

.bio-text + .bio-text { margin-top: 14px; }

/* Contact strip */
.contact-strip {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
}

.contact-row .c-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.38);
  width: 70px;
  flex-shrink: 0;
}

.contact-row .c-value {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(0,0,0,0.65);
}

.contact-row a {
  color: rgba(0,0,0,0.65);
  transition: color 0.2s;
}
.contact-row a:hover { color: #0a0a0a; }
