/* ═══════════════════════════════════════════════════════════════
   PROFIL.CSS — About Page · Grey Studio
   Editorial rows, zero cards — label kiri / konten kanan
═══════════════════════════════════════════════════════════════ */

.about {
  padding: 0 72px 96px;
  opacity: 0; transform: translateY(18px);
  animation: fadeUp 0.65s cubic-bezier(0.22,1,0.36,1) 0.2s forwards;
}

/* ── INTRO — foto + bio besar ───────────────────────────────── */
.about-intro {
  display: flex; align-items: flex-start; gap: 40px;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.about-photo-wrap { flex-shrink: 0; }
.profil-photo,
.profil-photo-placeholder {
  width: 96px; height: 96px; border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-mid);
}
.profil-photo-placeholder {
  background: var(--bg-elevated);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2px;
}
.profil-photo-placeholder .initials {
  font-family: var(--font-display); font-size: 26px;
  font-weight: 700; color: var(--text-2); line-height: 1;
}
.profil-photo-placeholder .photo-label { display: none; }

.about-intro-body { flex: 1; min-width: 0; }
.about-bio {
  font-family: var(--font-body);
  font-size: clamp(19px, 2.2vw, 28px);
  font-weight: 300; line-height: 1.55;
  color: var(--text-1);
  max-width: 30em;
  margin-bottom: 28px;
}
.about-intro-meta {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 12px; color: var(--text-2); letter-spacing: 0.3px;
}
.about-meta-sep {
  width: 24px; height: 1px; background: var(--border-mid);
  display: inline-block;
}

/* ── SECTION — label kiri / konten kanan ────────────────────── */
.about-section {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
}
.about-section-label {
  font-family: var(--font-body);
  font-size: 10.5px; font-weight: 500;
  color: var(--text-3);
  text-transform: uppercase; letter-spacing: 2px;
  line-height: 1.9;
  padding-top: 4px;
}
.about-section-body { min-width: 0; }

/* ── INFO ROWS ──────────────────────────────────────────────── */
.about-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: baseline; gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.about-row:first-child { padding-top: 0; }
.about-row:last-child { border-bottom: none; padding-bottom: 0; }
.about-row-label {
  font-size: 12px; font-weight: 400; color: var(--text-3);
  letter-spacing: 0.2px;
}
.about-row-value {
  font-size: 14px; font-weight: 400; color: var(--text-1);
  line-height: 1.6;
}
.about-row-value a {
  color: var(--text-1); text-decoration: none;
  border-bottom: 1px solid var(--border-mid);
  transition: border-color 0.18s;
}
.about-row-value a:hover { border-color: var(--text-1); }

.about-status {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-1);
}
.about-status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #3d9e6e;
  animation: pulseDot 2.4s ease-in-out infinite;
}

/* ── INTERESTS ──────────────────────────────────────────────── */
.about-interests { display: flex; flex-wrap: wrap; gap: 8px; }
.interest-tag {
  padding: 8px 18px; border-radius: 40px;
  border: 1px solid var(--border); background: transparent;
  font-family: var(--font-body); font-size: 12px; font-weight: 400;
  color: var(--text-2); cursor: default;
  transition: border-color 0.2s, color 0.2s;
}
.interest-tag:hover { border-color: var(--text-1); color: var(--text-1); }

/* ── EDUCATION ROWS ─────────────────────────────────────────── */
.about-edu-row {
  display: flex; align-items: baseline;
  justify-content: space-between; gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.about-edu-row:first-child { padding-top: 0; }
.about-edu-row:last-child { border-bottom: none; padding-bottom: 0; }
.about-edu-school {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 700; letter-spacing: -0.4px;
  color: var(--text-1); margin-bottom: 4px; line-height: 1.25;
}
.about-edu-major { font-size: 13px; color: var(--text-2); line-height: 1.5; }
.about-edu-year {
  font-size: 12px; color: var(--text-3); white-space: nowrap;
  letter-spacing: 0.3px;
}
.about-edu-year.now { color: var(--text-1); }

/* ── SOCIALS ────────────────────────────────────────────────── */
.about-socials { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.about-social {
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-2); text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--border-mid);
  transition: color 0.18s, border-color 0.18s;
}
.about-social:hover { color: var(--text-1); border-color: var(--text-1); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .about { padding: 0 20px 64px; }

  .about-intro {
    flex-direction: column; gap: 24px;
    padding: 36px 0;
  }
  .profil-photo, .profil-photo-placeholder { width: 76px; height: 76px; }
  .profil-photo-placeholder .initials { font-size: 20px; }
  .about-bio { font-size: 17px; margin-bottom: 20px; }
  .about-intro-meta { gap: 10px; font-size: 11px; }
  .about-meta-sep { width: 14px; }

  .about-section {
    grid-template-columns: 1fr; gap: 20px;
    padding: 32px 0;
  }
  .about-section-label br { display: none; }

  .about-row { grid-template-columns: 110px 1fr; gap: 12px; padding: 11px 0; }
  .about-row-label { font-size: 11px; }
  .about-row-value { font-size: 13px; }

  .interest-tag { padding: 7px 14px; font-size: 11.5px; }

  .about-edu-row {
    flex-direction: column; gap: 6px; padding: 18px 0;
  }
  .about-edu-school { font-size: 16px; }
  .about-edu-major { font-size: 12.5px; }

  .about-socials { gap: 10px 20px; }
}
